2011-12-19 17:10:53 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Checkout coupon form
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
2011-12-19 17:10:53 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2013-02-11 13:53:24 +00:00
|
|
|
global $woocommerce;
|
|
|
|
|
2013-11-25 14:01:32 +00:00
|
|
|
if ( ! WC()->cart->coupons_enabled() )
|
2013-02-10 23:02:52 +00:00
|
|
|
return;
|
2011-12-19 17:10:53 +00:00
|
|
|
|
2014-01-15 05:53:37 +00:00
|
|
|
$info_message = apply_filters( 'woocommerce_checkout_coupon_message', __( 'Have a coupon?', 'woocommerce' ) );
|
2013-11-14 00:10:49 +00:00
|
|
|
$info_message .= ' <a href="#" class="showcoupon">' . __( 'Click here to enter your code', 'woocommerce' ) . '</a>';
|
|
|
|
wc_print_notice( $info_message, 'notice' );
|
2011-12-19 17:10:53 +00:00
|
|
|
?>
|
|
|
|
|
2013-02-22 08:55:48 +00:00
|
|
|
<form class="checkout_coupon" method="post" style="display:none">
|
2011-12-19 17:10:53 +00:00
|
|
|
|
|
|
|
<p class="form-row form-row-first">
|
2012-10-16 09:45:33 +00:00
|
|
|
<input type="text" 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-10-16 09:45:33 +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>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-12-19 17:10:53 +00:00
|
|
|
<div class="clear"></div>
|
|
|
|
</form>
|