The Taps in the product detail page does not work any more.
Instead of listing/hiding behind the taps full content is listed below the product.
Please see sample here: http://www.capehouse.eu/magento/inde…tage-2011.html
Any idea?
Many thanks in advance.
2 answers
Hi chwmainz,
The problem was caused by the jquery library was loaded twice, I did as following to get this fixed
Open the file app/design/frontend/default/jm_dicento/template/page/html/head.phtml and replace this line of code
HTML Code:
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery/jquery.js') ?>"></script>
By this
HTML Code:
<?php if(!defined('JM_ADD_JQUERY')): ?> <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/jquery/jquery.js') ?>"></script> <?php define('JM_ADD_JQUERY', true); ?> <?php endif; ?>
It helps, you can check again !
It works, many thanks for your support.
This question is now closed