摘要:$root_id = Mage::app()->getStore()->getRootCategoryId(); $categories = Mage::getModel('catalog/category')->getCategories($root_id);获得分类名称 fore...
阅读全文
摘要:magento 在reindex的时候遇到Cannot initialize the indexer process错误,发现Catalog URL Rewrites 一项不能reindex解决方法:1.删除var/locks 目录下的所有文件 2.清空catalog_category_pr...
阅读全文
摘要:1.magento后台system->magage storescreate website : 比如m.shop.com,code:m_shopcreate store: 使用新建的website,name:Main Store,Root Category:Root Catalogcreate s...
阅读全文
摘要:$thumb_path = Mage::getModel('catalog/product_media_config')->getMediaUrl($product->getThumbnail()); $small_path...
阅读全文
摘要:$this->getReviewsSummaryHtml($_product, false, true)这个是获得产品的评论概况,会显示几颗星,但需要安装插件
阅读全文
摘要:1 $_product->getResource()->getAttribute('my_attribute_name')->getFrontend()->getValue($_product);注:在列表页获得的产品可能信息不全,需要获得产品id之后,使用 1 $_product = Mage:...
阅读全文
摘要:$subcategories = Mage::getModel('catalog/category')->getCategories($current_category_id);foreach($subcategories as $cat){$cat->getName();//名称Mage::hel...
阅读全文