Title: plugin does not work with blocky theme
Last modified: March 19, 2025

---

# plugin does not work with blocky theme

 *  Resolved [Nuvem Automação](https://wordpress.org/support/users/nuvemautomacao/)
 * (@nuvemautomacao)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-blocky-theme/)
 * 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.

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [M Rashid](https://wordpress.org/support/users/mamunur105/)
 * (@mamunur105)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-blocky-theme/#post-18371641)
 * 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:
 *     ```wp-block-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’ ); ?> **

Viewing 1 replies (of 1 total)

The topic ‘plugin does not work with blocky theme’ is closed to new replies.

 * ![](https://ps.w.org/shopbuilder/assets/icon-256x256.png?rev=2832812)
 * [ShopBuilder - WooCommerce Builder For Elementor](https://wordpress.org/plugins/shopbuilder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/shopbuilder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/shopbuilder/)
 * [Active Topics](https://wordpress.org/support/plugin/shopbuilder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shopbuilder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shopbuilder/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [M Rashid](https://wordpress.org/support/users/mamunur105/)
 * Last activity: [1 year, 2 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-blocky-theme/#post-18371641)
 * Status: resolved