I set every settings what will hide the price unit, expect the following.
On this link
www.hikashop.com/forum/product-category-...er-unit-display.html
I do not find nicolas second message
<tr <?php if(HIKASHOP_RESPONSIVE){ echo 'class="hidden-phone"'; } ?>>
<td colspan="<?php echo $row_count; ?>">
<hr />
</td>
</tr>
<?php
if(HIKASHOP_RESPONSIVE){
$td = '';
if($this->params->get('show_cart_image'))
$td = '<td colspan="3" class="hidden-phone hikashop_cart_empty_footer"></td>';
else
$td .= '<td colspan="2" class="hidden-phone hikashop_cart_empty_footer"></td>';
}else{
$td = '';
if($this->params->get('show_cart_image'))
$td .= '<td colspan="3" class="hikashop_cart_empty_footer"></td>';
else
$td .= '<td colspan="2" class="hikashop_cart_empty_footer"></td>';
}
to modify to this
<tr <?php if(HIKASHOP_RESPONSIVE){ echo 'class="hidden-phone"'; } ?>>
<td colspan="<?php echo ($row_count-1); ?>">
<hr />
</td>
</tr>
<?php
if(HIKASHOP_RESPONSIVE){
$td = '';
if($this->params->get('show_cart_image'))
$td = '<td colspan="2" class="hidden-phone hikashop_cart_empty_footer"></td>';
else
$td .= '<td colspan="1" class="hidden-phone hikashop_cart_empty_footer"></td>';
}else{
$td = '';
if($this->params->get('show_cart_image'))
$td .= '<td colspan="2" class="hikashop_cart_empty_footer"></td>';
else
$td .= '<td colspan="1" class="hikashop_cart_empty_footer"></td>';
}