PDA

View Full Version : Collapse Module in Joomla 1.5


jamesnoronha
11-01-2006, 02:07 PM
Any luck on figuring out how to make the Collapse Module work in Joomla 1.5?

rw_1
01-07-2008, 10:16 PM
Any luck on figuring out how to make the Collapse Module work in Joomla 1.5?

we need to edit the php code which controls collapsable modules, i.e. <?php if(mosCountModules('user6')) : ?>, this changes to <?php if($this->countModules('user6')) : ?>. In this instance, only mosC changes which is to $this->c. A simple change but there are other more complex formations of the module counter such as <?php if(mosCountModules('user4') or mosCountModules('user5') or mosCountModules('user6')) : ?> which changes to <?php if($this->countModules('user4 or user5 or user6')) : ?>
- Quote Source
(http://tutorials.rockettheme.com/joomla-templates/rokwebify-tutorials/joomla-1.5-native.html)