1

(30 replies, posted in Plugins)

nakome, maybe use database to store all stuff like history? And as for comments - maybe disqus will be better with less time to develop/
As for now - you did great work and thank you so much!

2

(30 replies, posted in Plugins)

nakome, will you implement tracking of customers history?
And add RUR as currency please smile

3

(30 replies, posted in Plugins)

Hm, but I think it is important to track purchased items in admin area. Can you implement this feature?
Also, is it possible to run your plugin on monstra 2.1.3?

4

(30 replies, posted in Plugins)

nakome, you rock! Great work! Waiting for changes to test this plugin.

5

(7 replies, posted in Plugins)

nakome wrote:

Thanks for commenting.
you can tell me which plugins js are to test it

My jquery version is 1.9.1, plugins are: placeholders (to activate support for ie8/9), bootstrap carousel etc, my custom like sticky footer and parsing

$('.myblock').load("<?php echo Url::base(); ?>/blog?tag=parse .pbody:lt(1)")

.
Replaced your validation with https://github.com/jzaefferer/jquery-validation but it seems not to work with safari 6.

6

(7 replies, posted in Plugins)

Mycontact won't work on php 5.2, even not loading sad

Tested on server with php 5.4 - all was fine.

Also your validation plugin conflicted with other js stuff, so I replaced it.

7 2013-04-10 06:58:20

(109 replies, posted in Plugins)

Weird thoughts, but how can I show random posts block?

8 2013-03-26 04:12:32

(6 replies, posted in Projects)

Can we hope to see fixed pagination for tags in blog? And maybe plugins compatibility issues with new monstra?

9 2013-03-25 04:53:23

(109 replies, posted in Plugins)

Worked like a charm, thanks nakome wink

10

(8 replies, posted in Projects)

Awilum, frequent spam posts on forum pushed me to ask about better anti-spam filter smile

11

(109 replies, posted in Plugins)

nakome wrote:

Yes but not only folder hehe

Tried to search for hardcoded definitions and replace them with partial luck smile
Can you point me to the right things I should change in plugin files?

12 2013-03-22 06:09:52

(109 replies, posted in Plugins)

Is it possible to install 2 instances of blog plugin? For example one is news and another is blog.

13

(1 replies, posted in Projects)

UPD. https://github.com/MonstraLab/monstra-cms

14

(109 replies, posted in Plugins)

Hm, no one knows how to replace default laggy pagination with working having no issues?

15

(20 replies, posted in Plugins)

Tried it, didn't work for me (displays everywhere). Forgot to mention that I want to use it with your bootstrap editor - bootstrap editor for pages only and markitup (ace editor doesn't appear at all after installation, but I prefer it because of syntax highlighting) for blocks only.

16

(20 replies, posted in Plugins)

There is typo for {cut} shortcode in editor - should be {cut} instead of { cut } (without spaces).

nakome, can you give a hint concerning MarkItUp only for blocks (display it only in blocks)?

17

(109 replies, posted in Plugins)

Should I delete this from blog.plugin.php:

                   View::factory('blog/views/frontend/pager')
                    ->assign('pages', $pages)
                    ->assign('page', $page)
                    ->render()

And delete pager.view.php?
And then use jquery plugin.

18

(109 replies, posted in Plugins)

Pagination for tags is not working - pages after first will show all blog posts, but not for defined tag. And maybe there is a hint how not to display pages count if it is only one page.
Any solution appreciated smile

19 2013-02-28 03:24:39

(4 replies, posted in Development)

Nice try!
But we need founder comments on this to put away all questions according donation acceptor.

20

(11 replies, posted in Plugins)

Maybe it is better to create and stick topic 'Donate for Redactor'?

21

(8 replies, posted in Questions)

Your mod just disabled class active for all <li> elements smile

What I need is:

<li class="dropdown">
 <a href="http://localhost/site/" class="dropdown-toggle" data-toggle="dropdown">Parent</a>   <---------- need to assign class="mycustomclass" (a href="http://localhost/site/" class="mycustomclass) 
    <ul class="dropdown-menu">                                                                                                                                           
        <li class="active"><a href="http://localhost/site/child" class="current">Child1</a></li>
        <li><a href="http://localhost/site/child?tag=sometag">Child2</a></li>
     </ul>
</li>

22

(20 replies, posted in Plugins)

nakome, thanks for amazingly fast responses!
P.S. I missed the bracket while copy-pasting, shame on me again)

23

(20 replies, posted in Plugins)

Didn't work sad

24

(8 replies, posted in Questions)

antiben, is it possible to leave only parent with class='active', but not children? Now only children highlighted and not parent.

What I need is:



<<Menu item (highlited with css if active) // Parent (highlited with css if child active)  // Menu item (highlited with css if active) // Menu item (highlited with css if active) >>
                                                                                                 |
                                                                                                \|/
                                                                            Child (without css highlight)


I guess I should edit this part:

            // get the default category
            if (trim($item['branch']) !== '') {
                if (trim($li_active) !== '') {
                    $li_active = ' class="active dropdown"';
                } else {
                    $li_active = ' class="dropdown"';
                }
                if (trim($anchor_active) !== '') {
                    $anchor_active = ' class="current dropdown-toggle" data-toggle="dropdown" ';
                } else {
                    $anchor_active = ' class="dropdown-toggle" data-toggle="dropdown" ';
                }
            }
            if (trim($item['branch']) !== '') {
               echo '<li'.$li_active.'>'.'<a href="'.$link.'"'.$anchor_active.$target.'>'.$item['name'].'</a>';
               echo '<ul class="dropdown-menu">';
               echo Menu::get($item['branch']);
               echo '</ul></li>';
            } else {
               echo '<li'.$li_active.'>'.'<a href="'.$link.'"'.$anchor_active.$target.'>'.$item['name'].'</a>'.'</li>';
            }

25

(20 replies, posted in Plugins)

Is it possible to disable editor for blocks and snippets?