Magento 使用小技巧体现大智慧(Last things first)
在我们的购物车Magento上线之前,有些小细节很容易被忽略。然而就是这些细微的疏忽,带来了用户体验上的瑕疵。更甚者,细节往往能决定成败。
下面的话题将覆盖大部分Magento的使用细节和技巧:
1.404-Page
估计大家都不喜欢Magento自带的404-page,可以在Admin Panel 的 CMS->Pages修改,定制一个自己特色的404-Page,比如在404-page显示新产品,在404-page加入下面代码:
{{block type=
"catalog/product_list"
category_id=
"10"
name=
"product_listing"
template="catalog/product/list.phtml}}
2.Replacing or removing the sidebar callouts
一般我们不需要callouts,可以在layout文件中直接删除callouts的block即可。一般我们也不需要Mage_Poll,那么 我们直接禁用该模块Admin Panel中 system->configuration->advance->Modules Output disable Mage_Poll模块(把不需要的都禁用,节省系统资源).
3.Store’s favicon
很多的Magento网店都忘了换掉这个系统自带的favicon图标.
4.Transactional e-mails setup
在Admin Panel 的 system->Transactional e-mails设置自己的email.
5.Setting up the newsletter
通过对系统自带的newsletter样板的简单修改就可以是的主客之间更好的交流.
6.SEO – Default title and keywords
seo是每个Magento store能否成功的关键因素,Catagery 的title和keyword大家务必填好,还有GA,google stiemap,Share(addthis widget)等
7.Store logos and e-mail addresses
在System -> Sales -> Invoice and Packing Slip Design 上传Store logos(200×50)图片.
在System -> Store Email addresses 页面做相应的Email地址信息修改.
8.Privacy policy and Terms of use
企业政策和使用条款是你和客户之间建立诚信关系的重要途径.
在Admin Panel中CMS->Pages添加这两个pages,然后放到static block的footer_links中.
9.Payment and Shipping options
Payment应该是你的客户最关心的问题之一了(东西都放购物车了,无法付款也是徒劳的),最好在显眼的位置(如footer banner)给出你支持的付款方式
Shipping Options 在CMS->Pages添加一个Page,就叫Shipping Option吧,在添加到Static Block的footer_links,当然你可以放在任何你喜欢的位置。
可以肯定的是,大部分的Magento使用者都是忽略掉上述技巧细节中的一到两个的,大家有空就赶紧修正唷。
from:http://www.iteye.com/topic/692389