在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 ?>
时间: 2024-10-09 02:49:11