在我的商店中,其中一个类别只有一个产品。是否可以在用户单击导航栏中的此类别时将用户直接带到此产品的产品详细信息页面?我想用一些代码来获取这个?
答案 0 :(得分:1)
将它放在产品网格中或列出/ app / design / frontend / default / [template] /template/catalog/product/list.phtml中的foreach循环
<?php if ($_productCollection->count() == 1) {
$url = $_product->getProductUrl();
Mage::app()->getFrontController()->getResponse()->setRedirect($url); }
?>