How to remove Exclusive Products from ShopIsle
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 ); } );