如何在virtmart productdetails和相关产品中分隔同一页面上的视图

时间:2014-06-11 11:38:42

标签: php joomla virtuemart

我有一个页面productdetails.php,下面显示了相关产品 我想为相关产品添加一些条件,但由于视图相同,我添加到相关产品的更改也会反映到产品详细信息页面

就像我想显示产品详细信息价格的单选按钮一样 并选择相关产品的清单 有什么帮助吗?

1 个答案:

答案 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
}

希望有所帮助......