-- HikaShop version -- : 2.6.2
-- Joomla version -- : 3.5.1
There is a bug, I think, at the product item page for the specifications of the product.
When both the product specifications and own product specification via custom product fields are published, the custom field publishes again the Specification H4 title.
See the html:
<div id="hikashop_tabs_div">
<ul id="product-tabs" class="hikashop_tabs_ul">
<li id="hikashop_show_tabular_description_li" class="" onclick="displayTab('hikashop_show_tabular_description');">Beschrijving</li>
<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li_selected" onclick="displayTab('hikashop_show_tabular_specification');">Specificaties</li>
</ul>
<div id="hikashop_show_tabular_description" class="hikashop_tabs_content" style="display: none;">
<div id="hikashop_show_tabular_specification" class="hikashop_tabs_content" style="display: inherit;">
<dl class="hikashop_product_dimensions">
<div id="hikashop_product_custom_info_main" class="hikashop_product_custom_info_main">
<h4>Specificaties</h4>
<dl class="hikashop_product_custom_info">
<dt>
<dd>
</dl>
</div>
</div>
<input id="selected_tab" type="hidden" value="hikashop_show_tabular_specification" name="selected_tab">
</div>
Those lines:
onclick="displayTab('hikashop_show_tabular_specification');">Specificaties</li>
....
<div id="hikashop_product_custom_info_main" class="hikashop_product_custom_info_main">
<h4>Specificaties</h4>
I can make it disappear in the CSS by adding
#hikashop_product_custom_info_main h4 {
display:none;
}
but it should not be there in fact.