我想在产品详情页面上显示当前类别
但在应用产品过滤器之后,它显示了第2类时间
用于获取类别的代码是:
<?php
if ($category = Mage::registry('current_category')) {
$name = $category->getName()
} else {
// either show nothing or fall back to load the product categories and pick
one }
?>
<?php echo '<h1 style="font-size: 25px; color: #393b3d;">'.$this-
>escapeHtml($name).'</h1>'; ?>
任何人都可以帮我解决此错误吗? 谢谢:)