PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.1.13
ShopBuilder – WooCommerce Builder For Elementor v2.1.13
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Controllers/SupportController.php +26 -13 2.0.22.1.13 View file →
@@ -19,8 +19,9 @@
19 19 /**
20 20 * SingletonTrait.
21 21 */
22 22 use SingletonTrait;
23 +
23 24 /**
24 25 * Construct function
25 26 */
26 27 private function __construct() {
@@ -25,10 +26,19 @@
25 26 */
26 27 private function __construct() {
27 28 add_action( 'init', [ $this, 'plugins_support' ], 9 );
28 29 add_action( 'init', [ $this, 'themes_support' ], 9 );
29 - add_filter( 'woocommerce_locate_template', [ $this, 'shipping_method_support' ], 10, 3 );
30 + add_filter( 'woocommerce_locate_template', [ $this, 'locate_template' ], 10, 3 );
31 + if ( defined( 'RTSB_DEVELOPER_MODE' ) && RTSB_DEVELOPER_MODE ) {
32 + $this->developer_support();
33 + }
34 + }
30 35
36 + /**
37 + * @return void
38 + */
39 + public function developer_support() {
40 + add_filter( 'rtsb/builder/args/publicly_queryable', '__return_true', 5 );
31 41 }
32 42
33 43 /**
34 44 * Theme Support
@@ -38,11 +48,13 @@
38 48 public function plugins_support() {
39 49 // Check for plugin using plugin name.
40 50 $active_plugin = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
41 51 $supports = [
52 + 'woo-address-book/woocommerce-address-book.php' => PluginsSupport\WooAddressBook::class,
42 53 'woo-product-variation-gallery/woo-product-variation-gallery.php' => PluginsSupport\RtwpvgSupport::class,
43 54 'woo-product-variation-swatches-pro/woo-product-variation-swatches-pro.php' => PluginsSupport\RtwpvsSupport::class,
44 55 ];
56 + $supports = apply_filters( 'rtsb/plugins/support', $supports );
45 57 foreach ( $supports as $active_path => $class ) {
46 58 $is_active = in_array( $active_path, $active_plugin, true );
47 59 if ( $is_active && class_exists( $class ) && method_exists( $class, 'instance' ) ) {
48 60 $class::instance();
@@ -80,21 +92,22 @@
80 92 * Theme Support
81 93 *
82 94 * @return void
83 95 */
84 - public function shipping_method_support( $template, $template_name, $template_path ) {
85 - if ( 'checkout/review-order.php' !== $template_name || ! BuilderFns::is_checkout() ) {
86 - return $template;
96 + public function locate_template( $template, $template_name, $template_path ) {
97 + if ( 'checkout/review-order.php' === $template_name && BuilderFns::is_checkout() ) {
98 + $id = BuilderFns::is_builder_preview() ? get_the_ID() : BuilderFns::builder_page_id_by_type( 'checkout' );
99 + $elmap = ElementorDataMap::instance();
100 + if ( ! $id ) {
101 + return $template;
102 + }
103 + $get_widget = $elmap->get_widget_data( 'rtsb-shipping-method', [], $id );
104 + if ( ! empty( $get_widget ) ) {
105 + $template = Fns::locate_template( 'elementor/checkout/customized-order-review' );
106 + }
107 + } elseif ( 'single-product/tabs/description.php' === $template_name && BuilderFns::is_product() ) {
108 + $template = Fns::locate_template( 'elementor/single-product/tab-description' );
87 109 }
88 110
89 - $id = BuilderFns::is_builder_preview() ? get_the_ID() : BuilderFns::builder_page_id_by_type( 'checkout' );
90 - $elmap = ElementorDataMap::instance();
91 - $get_widget = $elmap->get_widget_data( 'rtsb-shipping-method', [], $id );
92 - if ( ! empty( $get_widget ) ) {
93 - $template = Fns::locate_template( 'elementor/checkout/customized-order-review' );
94 - }
95 -
96 111 return $template;
97 112 }
98 -
99 -
100 113 }