我试图在Magento 1.9.2.1的标题搜索栏中预先选择当前类别。这将允许搜索“&”项目的用户a'在'类别a'然后能够执行跟踪搜索项目b'还限定了'类别a'。
我在搜索栏.phtml中尝试了以下操作,但在查看类别或产品页面时似乎没有设置任何内容。
$cat = Mage::registry('current_category');
$prod = Mage::registry('current_product');
$cat = Mage::getModel('catalog/layer')->getCurrentCategory();
$cat = $this->getCurrentCategory();
$cat = $this->getLayout()->getBlock('product_list')->getCategoryId();
在标题模板中获取类别ID的正确方法是什么?谢谢!