-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.2
-- PHP version -- : 5.6.0
Hi
Could you help me with a modification please?
I have rearranged the product display to look like this:
But when a variant is selected none of the specifications are displayed:
If I switch to the Protostar template the specifications are displayed for the variant so obviously it is something I have done incorrectly
I have moved a block of code out of the product show_default and inserted it into the end of show_block_custom_main:
}
$specifFields = ob_get_clean();
if(true){ //MODIFIED
?>
<div id="hikashop_product_custom_info_main" class="hikashop_product_custom_info_main">
<h4><?php echo JText::_('SPECIFICATIONS');?></h4>
<table width="100%">
<?php //MODIFIED
//LAYOUT show_block_dimensions //MODIFIED
$this->setLayout('show_block_dimensions'); //MODIFIED
echo $this->loadTemplate(); // MODIFIED
?>
<?php echo $specifFields; ?>
</table>
</div>
<?php }
echo '<p>{hikashop_social}</p>'; //MODIFIED
What do I need to do to get it to display the dimensions and weight for the variants?
Thanks
Trevor