alpertheidiot wrote:hi,
#1 customer reviews tab: this feature has always been disabled in virtuemart settings, but appeared with the new template (overriding settings?)
Actually it is working well, because reviews or review form are not being displayed inside tab content... but tab is still being shown.
The easier way, for now, is to open this file:
../components/com_virtuemart/themes/default/templates/product_details/flypage.tpl and replace this line:
- Code: Select all
<li><span><?php echo $VM_LANG->_('PHPSHOP_REVIEWS') ?></span></li>
with this one:
- Code: Select all
<li id="tabreview"><span><?php echo $VM_LANG->_('PHPSHOP_REVIEWS') ?></span></li>
Them add this line on ../css/vm/vm.css located on template directory:
- Code: Select all
#vmMainPage ul#gk_product_tabs li#tabreview {display: none;}
It does the job, but i'm sure our programmer will manage easier way.
Cheers