WPIntell

Source evidence

plugin does not work with blocky theme

ShopBuilder – WooCommerce Builder For Elementor · support · 2025-03-19T19:28:00+00:00

neutralsentiment
highseverity
0.64relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 27 rows with source links

18.5% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Nuvem Automação resolved
Hello, First of all, congratulations on the plugin. I have a website using the “Blocksy” theme, unfortunately it breaks the elementor “Order Review” feature, the designer on the checkout page breaks. Thank you for bringing this issue to our attention. We have already fixed it, and the fix will be available in the next version. For now, you can override the order-review.php template by creating the following directory structure in your theme’s root directory: /themes/blocksy/shopbuilder/elementor/checkout/order-review.php Inside order-review.php , add the following code: <?php /** * Template variables: * * @var $controllers array Widgets/Addons Settings * @var $checkout Object WC()->checkout() */ // Do not allow directly accessing this file. use RadiusTheme\SB\Helpers\Fns; if ( ! defined( 'ABSPATH' ) ) { exit( 'This script cannot be accessed directly.' ); } $wrapper_classes = ! empty( $controllers['table_horizontal_scroll_on_mobile'] ) ? ' rtsb-table-horizontal-scroll-on-mobile' : ''; ?> <div class="rtsb-checkout-order-review<?php echo esc_attr( $wrapper_classes ); ?>"> <?php do_action( 'woocommerce_checkout_before_order_review_heading' ); if ( ! empty( $controllers['show_title'] ) ) { ?> <h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'shopbuilder' ); ?></h3> <?php } ?> <?php $addons = 'on' === ( Fns::get_options( 'modules', 'product_add_ons' )['active'] ?? '' ); ?> <div id="order_review" class="woocommerce-checkout-review-order<?php echo esc_attr( $addons ? ' has-product-addons' : '' ); ?>"> <?php do_action( 'woocommerce_checkout_order_review' ); ?> </div> <?php do_action( 'woocommerce_checkout_after_order_review' ); ?> </div> Summary: We have added the following new line: <?php do_action( ‘woocommerce_checkout_before_order_review_heading’ ); ?>

Comments

1 shown
M Rashid 2025-03-20T04:48:00+00:00

Thank you for bringing this issue to our attention. We have already fixed it, and the fix will be available in the next version. For now, you can override the order-review.php template by creating the following directory structure in your theme’s root directory: /themes/blocksy/shopbuilder/elementor/checkout/order-review.php Inside order-review.php , add the following code: <?php /** * Template variables: * * @var $controllers array Widgets/Addons Settings * @var $checkout Object WC()->checkout() */ // Do not allow directly accessing this file. use RadiusTheme\SB\Helpers\Fns; if ( ! defined( 'ABSPATH' ) ) { exit( 'This script cannot be accessed directly.' ); } $wrapper_classes = ! empty( $controllers['table_horizontal_scroll_on_mobile'] ) ? ' rtsb-table-horizontal-scroll-on-mobile' : ''; ?> <div class="rtsb-checkout-order-review<?php echo esc_attr( $wrapper_classes ); ?>"> <?php do_action( 'woocommerce_checkout_before_order_review_heading' ); if ( ! empty( $controllers['show_title'] ) ) { ?> <h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'shopbuilder' ); ?></h3> <?php } ?> <?php $addons = 'on' === ( Fns::get_options( 'modules', 'product_add_ons' )['active'] ?? '' ); ?> <div id="order_review" class="woocommerce-checkout-review-order<?php echo esc_attr( $addons ? ' has-product-addons' : '' ); ?>"> <?php do_action( 'woocommerce_checkout_order_review' ); ?> </div> <?php do_action( 'woocommerce_checkout_after_order_review' ); ?> </div> Summary: We have added the following new line: <?php do_action( ‘woocommerce_checkout_before_order_review_heading’ ); ?>