magento出现Unable to post the review magento教程

magento出现Unable to post the review

magento前端在提交评论的时候出现Unable to post the review.错误的解决方法。 因为出现这种问题,我们一时半会儿也不太了解到底是MAGENTO1.2W++个文件中的哪一个出现了问题,好吧,现在告诉...

阅读全文
magento产品详细页显示SKU magento教程

magento产品详细页显示SKU

在你的magento产品详细页你想显示SKU,代码如下 产品详细页文件为template\catalog\product\view.phtml 1 ?php echo $this -htmlEscape( $_product -getSku()) ? 我们给修饰一下,代码和效果如下 1 pspan?php echo $...

阅读全文
magento产品页面调用属性 magento教程

magento产品页面调用属性

1-自定义属性时,必须将Used in Product Listing这个选项选为:Yes 2-打开须要调用的phtml模板,如:categories page, open:app\design\frontend\default\f001\template\catalog\product\list.phtml 3-根据你定义属性的...

阅读全文
magento快速清空缓存PHP脚本 magento教程

magento快速清空缓存PHP脚本

require app/Mage.php;if (!Mage::isInstalled()) { echo Application is not installed yet, please complete install wizard first.; exit;}Mage::app()-getCacheInstance()-flush();echo Flushed cache successfully; 把代码保存在网站根目录下,...

阅读全文
Magento订单成功无邮件发送 magento教程

Magento订单成功无邮件发送

Magento订单成功之后,或是有新的订单在MAGENTO1.9.1版本中不发送相应的邮件及抄送邮件至管理员邮箱 这个问题是今天我们的一个客户从1.7升级到1.9.1.1时发现的,后来听技术人员说,此问...

阅读全文