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
← All changes | includes/builder/templates/single-post.php +3 -1 3.0.23.1.4 View file →
@@ -17,8 +17,10 @@
17 17 */
18 18
19 19 defined('ABSPATH') || exit;
20 20
21 +// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals -- usk_ / BDTUSK_ / ultimate-store-kit- are this plugin's established public prefixes. Ultimate Store Kit Pro calls into these names, as does third-party integration code, so renaming them is a breaking change. Plugin Check only recognises prefixes derived verbatim from the slug and so reports them as unprefixed.
22 +
21 23 use UltimateStoreKit\Builder\Builder_Integration;
22 24
23 25 get_header();
24 26
@@ -24,9 +26,9 @@
24 26
25 27 do_action('ultimate-store-kit-builder/woocommerce/before-main-content');
26 28
27 29 if (class_exists('Elementor\Plugin')) {
28 - echo Elementor\Plugin::instance()->frontend->get_builder_content(Builder_Integration::instance()->current_template_id, false);
30 + 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.
29 31 }
30 32
31 33 do_action('ultimate-store-kit-builder/woocommerce/after-main-content');
32 34