PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.3.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.3.0
2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 1.8.1 All 42 releases
← All changes | includes/settings/class.php +1 -2 trunk2.3.0 View file →
@@ -89,10 +89,9 @@
89 89 }, 5 );
90 90
91 91 add_filter( 'the_content', function() use ( $template_id ) {
92 92 ob_start();
93 - $content = \Elementor\Plugin::instance()->frontend->get_builder_content_for_display( (int) $template_id, true );
94 - echo do_shortcode( $content ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Elementor template HTML; wp_kses_post strips required style/script.
93 + echo \Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $template_id, true );
95 94 return ob_get_clean();
96 95 } );
97 96 }
98 97 }