PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.0.2
ShopBuilder – WooCommerce Builder For Elementor v2.0.2
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/Hooks/BuilderHooks.php +0 -7 2.1.12.0.2 View file →
@@ -11,9 +11,8 @@
11 11
12 12 use RadiusTheme\SB\Helpers\Fns;
13 13 use RadiusTheme\SB\Helpers\BuilderFns;
14 14 use RadiusTheme\SB\Traits\SingletonTrait;
15 -use RadiusTheme\SBPRO\Helpers\FnsPro;
16 15
17 16 /**
18 17 * Builder Frontend.
19 18 */
@@ -41,9 +40,8 @@
41 40 // Template Redirect hook run after the global query.
42 41 add_action( 'template_redirect', [ $this, 'frontend_init' ] );
43 42 add_filter( 'rtsb/builder/set/current/page/type', [ $this, 'builder_page_type' ] );
44 43 add_filter( 'body_class', [ $this, 'product_page_body_class' ] );
45 - add_filter('rtsb/multi/step/checkout/widget',[__CLASS__,'multi_step_checkout_widget_builder_hooks']);
46 44 }
47 45
48 46 /**
49 47 * Builder page Body class.
@@ -177,11 +175,6 @@
177 175 $content = apply_filters( 'the_content', $content );
178 176 $output = str_replace( ']]>', ']]>', $content );
179 177 }
180 178 echo wp_kses_post( $output );
181 - }
182 -
183 - public static function multi_step_checkout_widget_builder_hooks() {
184 -
185 - return ! FnsPro::checkout_page_has_multi_step_widget();
186 179 }
187 180 }