我有一个页面productdetails.php,下面显示了相关产品 我想为相关产品添加一些条件,但由于视图相同,我添加到相关产品的更改也会反映到产品详细信息页面
就像我想显示产品详细信息价格的单选按钮一样 并选择相关产品的清单 有什么帮助吗?
答案 0 :(得分:0)
试试这个,
在layout
页面(productdetails/tmpl
内的任何页面)中,相关产品变量可用$this->product->customfieldsRelatedProducts
,因此您只需检查即可。
if(sizeof($this->product->customfieldsRelatedProducts) >0){
// the current viewing product have related products
}else{
//the current product have no related products
}
希望有所帮助......