PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 3.1.4
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v3.1.4
3.1.4 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 93 releases
ultimate-store-kit / includes / builder / templates / woocommerce / checkout.php

checkout.php in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 3.1.4, at includes/builder/templates/woocommerce/checkout.php

35 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Checkout Page
5 *
6 * This template can be overridden by copying it to
7 * yourtheme/woocommerce/checkout/checkout.php.
8 *
9 * HOWEVER, on occasion WooCommerce will need to update template files and you
10 * (the theme developer) will need to copy the new files to your theme to
11 * maintain compatibility. We try to do this as little as possible, but it does
12 * happen. When this occurs the version of the template file will be bumped and
13 * the readme will list any important changes.
14 *
15 * @see https://docs.woocommerce.com/document/template-structure/
16 * @package WooCommerce\Templates
17 * @version 3.8.0
18 */
19
20 defined('ABSPATH') || exit;
21
22 use UltimateStoreKit\Builder\Builder_Integration;
23
24 get_header('shop');
25
26 if (class_exists('Elementor\Plugin')) {
27 ?>
28 <form name="checkout" method="post" class="checkout woocommerce-checkout" action="<?php echo esc_url(wc_get_checkout_url()); ?>" enctype="multipart/form-data">
29 <?php echo Elementor\Plugin::instance()->frontend->get_builder_content(Builder_Integration::instance()->current_template_id, false); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Elementor renders and escapes the builder content itself. ?>
30 </form>
31 <?php
32 }
33
34 get_footer('shop');
35 ?>