It looks like a few issues. First, the plugins JavaScript file isn’t loading. Can you confirm that your themes footer.php file contains the <?php wp_footer(); ?> function call?
Also, you’ve set it up to be two separate accordion blocks. Try this instead:
[accordion openfirst=true]
[accordion-item title="cotton "]Cotton [/accordion-item]
[accordion-item title="Dri Fit"]Drifit[/accordion-item]
[/accordion]
Thread Starter
azmi86
(@azmi86)
This is the end of my footer file
<script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/theme_common.js.php?v=2.0&is_mobile=<?php echo $detect_mobile[‘is_mobile’]; ?>&is_touch=<?php echo $detect_mobile[‘is_touch’]; ?>&language_direction=<?php echo $data[‘direction’]; ?>”></script>
<?php echo $data[‘google_analytics’]; ?>
<?php wp_footer(); ?>
</body>
</html>
I have use the code you gave above, but still cant.
My only other thoughts are that there might be another plugin conflicting or a conflict with your theme. But it looks like you’ve switched to another plugin, so I assume this is resolved.