phpwind 做的网站,专业的营销型网站培训中心,北京环保行业网站建设,网站开发培训哪里好在checkout页面中#xff0c;如果想判断顾客是否有使用coupon code#xff0c;可以通过checkout session来进行判断。以下代码会返回checkout中使用的coupon code或者返回空#xff08;当没有使用coupon code时#xff09; 1 ?php
2
3 $coupon_code Mage::getSingl…在checkout页面中如果想判断顾客是否有使用coupon code可以通过checkout session来进行判断。以下代码会返回checkout中使用的coupon code或者返回空当没有使用coupon code时 1 ?php
2
3 $coupon_code Mage::getSingleton(checkout/session)-getQuote()-getCouponCode(); if($coupon_code){
4 echo coupon used;
5 }else{
6 echo coupon not used;
7 }
8
9 ? 转载于:https://www.cnblogs.com/mityaya/p/4613372.html