|
Hi!
It happens because javascript functions are not included. Add these tags to your pages to get it work:
add this tag to the <head> section
<?php include(getTemplateFileAbsolutePath('pages/templates/part.header.tpl.html')); ?>
add this tag before the </body> tag:
<?php include(getTemplateFileAbsolutePath('pages/templates/part.footer.tpl.html')); ?>
It will also include Avactis css files. If you do not need them, remove this code from the avactis-themes/system/pages/templates/part.header.tpl.html file
'css/ui.dynatree.css', 'css/ui.dynatree.custom.css', 'css/common.default.css', 'css/common.box.css', 'css/layout.css', 'css/style.menu.css', 'css/style.search.css', 'css/style.buttons.css', 'css/style.navigation_bar.css', 'css/style.product_list.css', 'css/style.product_info.css', 'css/style.shoppingcart.css', 'css/style.checkout.css', 'css/style.myaccount.css', 'css/style.subscribe.css', 'css/style.shipping_calculator.css', 'css/style.subcategories.css', 'css/style.product_type_filter.css', 'css/jquery.jcarousel.css', 'css/jquery.jcarousel.skin.css', 'css/jquery.jcarousel.skin.custom.css', 'css/ajax_manager.css', 'css/module.*.css',
|