Hi,
Here is the code I edited in the view "product / listing_img_title":
<?php
$prodClass = hikashop_get('class.product');
$prodCats = $prodClass->getCategories($this->row->product_id);
$hide = 0;
foreach($prodCats as $prodCat){
if($prodCat == '116') $hide = 1;
}
?>
<!-- ADD TO CART BUTTON AREA -->
<?php if($hide == 0){
if($this->params->get('add_to_cart') || $this->params->get('add_to_wishlist')){
$this->setLayout('add_to_cart_listing');
echo $this->loadTemplate();
} }?>
<!-- EO ADD TO CART BUTTON AREA -->
Where '116' is the id of your category.