在Magento模板开发中,有时候需要将多级分类的url简化,Magento的URL默认是显示多级分类的 if (null === $parentPath) { $parentPath = $this->getResource()->getCategoryParentPath($category); } elseif ($parentPath == '/') { $parentPath = ''; }
将上面这段代码注释掉。 |
在Magento模板开发中,有时候需要将多级分类的url简化,Magento的URL默认是显示多级分类的 if (null === $parentPath) { $parentPath = $this->getResource()->getCategoryParentPath($category); } elseif ($parentPath == '/') { $parentPath = ''; }
将上面这段代码注释掉。 |
订单详细内容页手动修改订单状态方法: 打开此文件:app\design\adminhtml\default\default\template\sa...
在magento后台更新了商品,类目的信息后,往往需要重新rebuild index,清空缓存,才能在前台正常...
第一步,首先进入后台的systemconfiguration。 第二步,也是很多人都不知道的一步,将左上方的这...
magento的产品页中要实现如下的评论的换页显示及指定每页评论数 方法如下: 1、app/code/local/...
显示与特定类别相关联的产品的数量,我有 overrided magento 导航块。为此我创建了一个快速扩展...
Magento默认支持Paypal付款方式。最近的一个Magento项目中,客户要求在用户通过Paypal付款跳转到支...