PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
wpb
/
shortcodes
/
checkout
<?php /** * Coupon form shortcode. * * @package Woodmart */ use XTS\Modules\Layouts\Main; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } if ( ! function_exists( 'woodmart_shortcode_checkout_login_form' ) ) { /** * Coupon form shortcode. * * @param array $settings Shortcode attributes. */ function woodmart_shortcode_checkout_login_form( $settings ) { if ( is_user_logged_in() || 'no' === get_option( 'woocommerce_enable_checkout_login_reminder' ) ) { return ''; } $default_settings = array( 'alignment' => '', 'css' => '', ); $settings = wp_parse_args( $settings, $default_settings ); $wrapper_classes = apply_filters( 'vc_shortcodes_css_class', '', '', $settings ); if ( $settings['css'] ) { $wrapper_classes .= ' ' . vc_shortcode_custom_css_class( $settings['css'] ); } if ( $settings['alignment'] ) { $wrapper_classes .= ' text-' . $settings['alignment']; } ob_start(); Main::setup_preview(); woodmart_enqueue_inline_style( 'woo-mod-login-form' ); ?> <div class="wd-checkout-login wd-wpb<?php echo esc_attr( $wrapper_classes ); ?>"> <?php woocommerce_checkout_login_form(); ?> </div> <?php Main::restore_preview(); return ob_get_clean(); } }
[-] login-form.php
[edit]
[-] billing-details-form.php
[edit]
[-] shipping-details-form.php
[edit]
[+]
..
[-] coupon-form.php
[edit]
[-] payment-methods.php
[edit]
[-] order-review.php
[edit]