magento默认的账户注册方式是:注册后自动成功,并登陆。
但是有的客户需要注册后,需要邮箱验证,然后才能注册。
具体的方法如下:
1.进入后台syatem-->configuration,进入配置页面。
2.点击customer configuration,
3.刷新后
create New Account Options
--->Require Emails Confirmation 设置为yes
4.保存,刷新缓存即可。
5.进入邮箱测试。是否功能流程畅通。
magento默认的账户注册方式是:注册后自动成功,并登陆。
但是有的客户需要注册后,需要邮箱验证,然后才能注册。
具体的方法如下:
1.进入后台syatem-->configuration,进入配置页面。
2.点击customer configuration,
3.刷新后
create New Account Options
--->Require Emails Confirmation 设置为yes
4.保存,刷新缓存即可。
5.进入邮箱测试。是否功能流程畅通。
团购功能:不能加入购物车报错的修改。如下:
app/code/local/magestore/groupdeal/model/observer.php
87行代码:
foreach($items as $item){
//check if there is deal product in cart
$option = $item->getOptionByCode('product_type');
//if($option){
//$groupedProductId = $option->getProduct()->getId();
//if(Mage::helper('groupdeal')->isGroupdealProduct($groupedProductId)){
//remove recently added item
// $this->_getCart()->removeItem($addedItem->getId());
// Mage::throwException(Mage::helper('groupdeal')->__('Can\'t add more products to cart.'));
// return;
// }
//}
}
修改如上。
magento自带newsletter功能,但是很少有人用,下面详细说一下用法:
1.前台订阅一下邮件,作为测试。
2.后台newsletter-->newsletter Template
新建一个模板,Sender Email *填写正确的邮箱,保存。
3.找到刚才新建的邮件模板,在action一列有一个query newsletter,点击
4填写,保存。
5.system-->configuration newsletter里面把邮箱地址填写,要填写正确的
6.访问cron.php
7.测试是否成功。OK!
magento的图片添加水印方法:
在后台:system-->configuration
进入后点击design
然后点击Product Images watermarks
Base Image Watermark:对应的是产品详细页面的图片水印
Small Image Watermark:对应的是产品分类页面的图片水印
Thumbnail Watermark:对应的是购物车页面的图片水印
加入后,保存即可。