BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
themes
/
porto
/
woocommerce
/
checkout
📤 Upload
📝 New File
📁 New Folder
Close
Editing: form-coupon.php
<?php /** * Checkout coupon form * * This template can be overridden by copying it to yourtheme/woocommerce/checkout/form-coupon.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.8.0 */ defined( 'ABSPATH' ) || exit; $porto_woo_version = porto_get_woo_version_number(); $checkout_ver = porto_checkout_version(); if ( !( version_compare($porto_woo_version, '2.5', '<') ? WC()->cart->coupons_enabled() : wc_coupons_enabled() ) ) { // @codingStandardsIgnoreLine. return; } ?> <?php if ( 'v2' == $checkout_ver ) : ?> <div class="cart_totals_toggle mb-3"> <div class="card card-default"> <?php endif; ?> <?php if ( 'v2' == $checkout_ver ) { ?> <div class="card-header arrow"> <h2 class="card-title m-0"> <a class="accordion-toggle collapsed" data-bs-toggle="collapse" href="#panel-cart-discount" ><?php esc_html_e( 'DISCOUNT CODE', 'porto' ); ?></a> </h2> </div> <?php } else { ?> <div class="woocommerce-form-coupon-toggle mb-4"> <?php /** * Filter checkout coupon message. * * @param string $message coupon message. * @return string Filtered message. * * @since 1.0.0 */ echo apply_filters( 'woocommerce_checkout_coupon_message', esc_html__( 'Have a coupon?', 'woocommerce' ) . ' <a href="#" role="button" aria-label="' . esc_attr__( 'Enter your coupon code', 'woocommerce' ) . '" aria-controls="woocommerce-checkout-form-coupon" aria-expanded="false" class="showcoupon text-v-dark text-uppercase font-weight-bold">' . esc_html__( 'Enter your code', 'porto' ) . '</a>' ); ?> </div> <?php } ?> <?php if ( 'v2' == $checkout_ver ) : ?> <div id="panel-cart-discount" class="accordion-body collapse"> <div class="card-body"> <?php endif; ?> <form class="checkout_coupon woocommerce-form-coupon" method="post" style="display:none" id="woocommerce-checkout-form-coupon"> <div class="featured-box align-left"> <div class="box-content"> <label for="coupon_code" class="screen-reader-text"><?php esc_html_e( 'Coupon:', 'woocommerce' ); ?></label> <p class="form-row form-row-first"> <input type="text" name="coupon_code" class="input-text" placeholder="<?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?>" id="coupon_code" value="" /> </p> <p class="form-row form-row-last"> <button type="submit" class="btn button wc-action-btn wc-action-sm" name="apply_coupon" value="<?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?>"><?php esc_html_e( 'Apply coupon', 'woocommerce' ); ?></button> </p> <div class="clear"></div> </div> </div> </form> <?php if ( 'v2' == $checkout_ver ) : ?> </div> </div> </div> </div> <?php endif; ?>
Save
Cancel