The code in the other post is different from whats in the current Accordion Module.
In the other post it state to change line 32 from
<div id="accordion-body-<?php echo $i; ?>" class="panel-collapse collapse <?php if($i<1) echo "in"; ?>">
change it to:
<div id="accordion-body-<?php echo $i; ?>" class="panel-collapse collapse ">
But this is what is on line 32 now:
<div id="collapse-<?php echo $module->id; ?><?php echo $i ?>" class="panel-collapse collapse <?php if($i==0) echo 'in' ?>" role="tabpanel" aria-labelledby="heading-<?php echo $module->id; ?><?php echo $i ?>" aria-expanded="<?php if($i==0): echo 'true'; else: echo 'false'; endif; ?>">
So what part of this do I need to change?
Thanks...