2011-12-19 17:10:53 +00:00
< ? php
/**
* Checkout Coupon Form
*/
2012-03-12 09:25:06 +00:00
if ( get_option ( 'woocommerce_enable_coupons' ) == 'no' || get_option ( 'woocommerce_enable_coupon_form_on_checkout' ) == 'no' ) return ;
2011-12-19 17:10:53 +00:00
2012-01-05 11:31:22 +00:00
$info_message = apply_filters ( 'woocommerce_checkout_coupon_message' , __ ( 'Have a coupon?' , 'woocommerce' ));
2011-12-19 17:10:53 +00:00
?>
2012-04-28 17:28:18 +00:00
< p class = " woocommerce_info " >< ? php echo $info_message ; ?> <a href="#" class="showcoupon"><?php _e('Click here to enter your code', 'woocommerce'); ?></a></p>
2011-12-19 17:10:53 +00:00
< form class = " checkout_coupon " method = " post " >
< p class = " form-row form-row-first " >
2012-01-05 11:31:22 +00:00
< input name = " coupon_code " class = " input-text " placeholder = " <?php _e('Coupon code', 'woocommerce'); ?> " id = " coupon_code " value = " " />
2011-12-19 17:10:53 +00:00
</ p >
< p class = " form-row form-row-last " >
2012-01-05 11:31:22 +00:00
< input type = " submit " class = " button " name = " apply_coupon " value = " <?php _e('Apply Coupon', 'woocommerce'); ?> " />
2011-12-19 17:10:53 +00:00
</ p >
< div class = " clear " ></ div >
</ form >