如何在Magento的第一笔订单上实现15%的优惠

时间:2017-05-16 06:32:36

标签: magento-1.9

我正在努力实施第一笔订单的15%折扣。用户可以是访客或注册。

请分享有关Magento CE 1.9的任何有用的网址或指南或扩展程序

1 个答案:

答案 0 :(得分:0)

请按照以下代码:

<?php
if(Mage::getSingleton('customer/session')->isLoggedIn()){
    $customerData = Mage::getSingleton('customer/session')->getCustomer();
    $customer_id =  $customerData->getId();
    $_orders = Mage::getModel('sales/order')->getCollection()->addFieldToFilter('customer_id',$customer_id);                        
    $_orderCnt = $_orders->count(); //orders count
    if ($_orderCnt<1){

        // Display your discount coupon code for apply in cart page 
        // Or play with your discount code 

    }

}

希望它为你工作。