我想根据此类别为每个产品添加一个类,或者检查此产品是否存在于此类别中并添加一些类
例如: 现在我有
<div class="product-price" id="productPrice<?php echo $this->product->virtuemart_category_id ?>">
它向我展示了前者的用武之地。 h34
这是类别类,但问题是有时候我有多个类别,但产品只有第一个主要类别。
我需要那样的东西
如果产品SHIRT存在于categoryID 77中,请添加class="label"
一些想法?
答案 0 :(得分:0)
使用此查询检查产品是否属于类别
SELECT * FROM `#__virtuemart_product_categories` WHERE `virtuemart_product_id` = <product_id> AND `virtuemart_category_id` = <category_id>