Wishlist Icon Showing in Product Carousel

I also have the YITH Wishlist plugin installed. I am using the following code to limit what product categories show the wishlist. It works in all other parts of the store except the carousel. Can you help me edit it?

/*Exclude Wishlist on Specific Categories */
if ( ! function_exists( 'yith_wcwl_show_add_to_wishlist_button' ) ) {
	function yith_wcwl_show_add_to_wishlist_button( $show ) {
		global $product;

		$excluded_categories = array(
			'installation','you_buy_we_install', 'gazebos', 'quote-services', 'basketball-goals', 'playsetservices', 'gazebos', 'trampolines', 'shed-services', 'pergolas',
		);
		$product_categories = wp_get_post_terms( $product->get_id(), 'product_cat' );
		$product_categories = $product_categories ? wp_list_pluck( $product_categories, 'slug' ) : array();

		if ( array_intersect( $excluded_categories, $product_categories ) ) {
			return false;
		}

		return $show;
	}
	add_filter( 'yith_wcwl_show_add_to_wishlist', 'yith_wcwl_show_add_to_wishlist_button', 10, 1 );
}

php?>

The page I need help with: [log in to see the link]

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer