Hi,
There is no option for that.
There are three things I can propose:
- You could just turn off the "out of stock" product display setting in your menu items.
- You could use the "badges" feature:
www.hikashop.com/support/documentation/1...p-badge-listing.html
Badges have a stock quantity setting that you can set to "0" so that the badge will only display if the stock of the product is 0.
- You could edit the file product / listing_img_title via the menu Display>Views. There, you can find this line of code:
<div class="hikashop_listing_img_title" id="div_<?php echo $mainDivName.'_'.$this->row->product_id; ?>">
You could try changing it to :
<div class="hikashop_listing_img_title<?php if($this->row->product_quantity == 0){ echo ' no_stock_class';} ?>" id="div_<?php echo $mainDivName.'_'.$this->row->product_id; ?>">
So that you could use the no_stock_class class in your CSS to change the background color.