Hello all!
First of all, thanks for this great module. It's really helpful.
I've got two issues:
1. I've been trying to get the First displayed item to be closed for quite a while now. I want all items to be closed. But it won't work. I tried to enter 0 or -1 into the field "First Displayed Item" in the backend - no effect.
Then I tried to change the following code in the ../modules/mod_sj_content_accordion/tmpl/default.php file:
from:
$('#<?php echo $uniquied;?>').imagesLoaded( function(){
$('#<?php echo $uniquied;?>').sj_accordion({
items : '.acd-item',
heading : '.acd-header',
content : '.acd-content-wrap',
active_class : 'selected',
event : '<?php echo $params->get('accmouseenter', 'click');?>',
delay : 300,
duration : 500,
active : '<?php echo $item_first;?>'
});
to:
$('#<?php echo $uniquied;?>').imagesLoaded( function(){
$('#<?php echo $uniquied;?>').sj_accordion({
items : '.acd-item',
heading : '.acd-header',
content : '.acd-content-wrap',
active_class : 'selected',
event : '<?php echo $params->get('accmouseenter', 'click');?>',
delay : 300,
duration : 500,
active : '-1'
});
but: no effect.
2. Moreover I want the selected item to be activated (blue header but still closed). Is this possible in any way? I'm clueless.
I'm working with Joomla! 2.5.18 Stable Version and mod_sj_content_accordion_J25-J30-res_v3.0.
Your help is really appreciated.
Thanks a lot!
Inga