Hi,
That won't be that easy to do and some developer skills will be required, you'll just have display or not that code :
<?php if($hide_specs == 0){ ?>
<div class="hikashop_tabs_content" id="hikashop_show_tabular_specification">
<?php
//LAYOUT show_block_dimensions
$this->setLayout('show_block_dimensions');
echo $this->loadTemplate();
if(!empty($this->fields)){
//LAYOUT show_block_custom_main
$this->setLayout('show_block_custom_main');
echo $this->loadTemplate();
}
?>
</div>
<?php }
So the solution will be to use something like this (note that you"ll have to replace the "$MYCUSTOMFIELDVALUE" variable)
<?php if(!empty($MYCUSTOMFIELDVALUE) && $hide_specs == 0){ ?>
<div class="hikashop_tabs_content" id="hikashop_show_tabular_specification">
<?php
//LAYOUT show_block_dimensions
$this->setLayout('show_block_dimensions');
echo $this->loadTemplate();
if(!empty($this->fields)){
//LAYOUT show_block_custom_main
$this->setLayout('show_block_custom_main');
echo $this->loadTemplate();
}
?>
</div>
<?php }