我已将类别横幅移至.controller('news', function($scope, ofcservices) {
$scope.news = ofcservices.getnews();
})
。
如何仅在类别页面上显示它而不在产品页面上显示?
例如,我的类别页面是" 2column.left.phtml
"当我点击此类别页面上的某个产品时,该链接会更改为" cuff-links
",从此,我不想再显示该横幅了。
答案 0 :(得分:0)
您可以尝试以下代码:
$module = Mage::app()->getRequest()->getModuleName();
$contoller = Mage::app()->getRequest()->getControllerName();
if($module == 'catalog' && $contoller == 'category') {
// Catgeory Banner Content
}