如何类别名称添加到车身在Magento? 有时候,你想按照类别来修改页面。例如,你想改变的旗帜,背景或其他的东西。 为了做到这一点: 第1步您可以添加下面的代码片段的/template/page/1column.phtml或/template/page/2columns-left.phtml或其他地方,你想要的:
$class = '';
$currentCategory = Mage::registry('current_category');
if ($currentCategory) {
$parentCategories = $currentCategory->getParentCategories();
$topCategory = reset($parentCategories);
$class .= $topCategory->getUrlKey();
}
?>
第2步其次,追加$ addClass变量的车身是这样的: <body <?php echo $this->getBodyClass()?' class="'.$this->getBodyClass() . " " . $class . '"'干得好,幸福的编码 (责任编辑:最模板) |