Skip to content

How to remove Exclusive Products from ShopIsle

This guide explains how to remove the Exclusive Products section from single product pages in the ShopIsle theme by adding a short code snippet to your child theme's functions.php file.

Important notice: This product is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.

You can add the following code to your functions.php file of your child theme to remove Exclusive product section from the Product page:

add_action( 'wp_loaded', function() {
	remove_action( 'woocommerce_after_single_product', 'shop_isle_products_slider_on_single_page', 10 );
} );
Was this helpful?