1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/** * Checkout coupon form * * @author NasaTheme * @package Elessi-theme/WooCommerce * @version 7.0.1 */
defined('ABSPATH') || exit;
if (!wc_coupons_enabled()) : // @codingStandardsIgnoreLine. return; endif;
defined('NASA_CHECKOUT_LAYOUT') or define('NASA_CHECKOUT_LAYOUT', 'default'); ?>
<div class="woocommerce-form-coupon-toggle nasa-toggle-coupon-checkout"> <?php wc_print_notice(apply_filters('woocommerce_checkout_coupon_message', __('Have a coupon?', 'elessi-theme') . ' <a href="#" class="showcoupon">' . __('Click here to enter your code', 'elessi-theme') . '<svg width="30" height="30" viewBox="0 0 32 32"><path d="M15.233 19.175l0.754 0.754 6.035-6.035-0.754-0.754-5.281 5.281-5.256-5.256-0.754 0.754 3.013 3.013z" fill="currentColor" /></svg></a>'), 'notice'); ?> </div>
<form class="checkout_coupon woocommerce-form-coupon" method="post" style="display:none"> <div class="row"> <div class="large-7 columns"> <p><?php esc_html_e('If you have a coupon code, please apply it below.', 'elessi-theme'); ?></p>
<div class="form-row form-row-first coupon"> <input type="text" name="coupon_code" class="input-text" placeholder="<?php esc_attr_e('Coupon code', 'elessi-theme'); ?>" id="coupon_code" value="" /> <button type="submit" class="button" name="apply_coupon" value="<?php esc_attr_e('Apply coupon', 'elessi-theme'); ?>"><?php esc_html_e('Apply coupon', 'elessi-theme'); ?></button> </div> </div> <div class="large-5 columns title-align-left"> <?php if (NASA_CHECKOUT_LAYOUT !== 'modern') { elessi_checkout_get_coupon_slide(); } ?> </div> </div> </form>
|