collapsible categories

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

collapsible categories

Post by neuropass »

hey Stoker, :hi:

what are you using for the collapsible categories here? Looks like a cookie is set to remember the setting?


Thanks!

collapsible categories

Post by martin123456 »

http://www.christianbullock.com/2011/ph ... th-cookies

Top of my head place this edit

Code: Select all

<script type="text/javascript">
        $(".forumlist").collapse({show: function(){
                this.animate({
                    opacity: 'toggle',
                    height: 'toggle'
                }, 300);
            },
            hide : function() {
                   
                this.animate({
                    opacity: 'toggle',
                    height: 'toggle'
                }, 300);
            }
        });
</script>
in the footer.

collapsible categories

Post by Stoker »

Yes, the one from Christian Bullock. Have been using it for some time now.