-- HikaShop version -- : 3.1.1
-- Joomla version -- : 3.7.5
-- PHP version -- : 7.0.10
-- Browser(s) name and version -- : all
-- Error-message(debug-mod must be tuned on) -- : none
Hi Hikashop
I cannot find the option in back-end to disable view of product images in shipping block (show_block_shipping.php)
if($several_groups && !empty($this->options['show_shipping_products']))
Should I then just delete line 43-64?
if($several_groups && !empty($this->options['show_shipping_products'])) {
?>
<ul class="hikashop_shipping_products">
<?php
foreach($group->products as $product) {
if($product->cart_product_quantity <= 0)
continue;
$thumbnail = '';
if(!empty($product->images))
$thumbnail = $product->images[0]->file_path;
$image = $this->imageHelper->getThumbnail($thumbnail, array(50,50), array('default' => true), true);
$name = $this->escape(strip_tags($product->product_name));
?>
<li class="hikashop_shipping_product"><img src="<?php echo $image->url; ?>" alt="<?php echo $name; ?>" data-toggle="hk-tooltip" data-title="<?php echo $name; ?>"/></li>
<?php
}
?>
</ul>
<?php
}
?>
Regards,
Henrik