Home Forums WoodMart support forum wishlist along with add to cart button Reply To: wishlist along with add to cart button

#452832

Hello,

Please add this code to the functions.php of the child theme:

	add_action( 'wp', function () {
		if ( class_exists( 'XTS\WC_Wishlist\Ui' ) ) {
			remove_action( 'woocommerce_single_product_summary', array( XTS\WC_Wishlist\Ui::get_instance(), 'add_to_wishlist_single_btn' ), 33 );
			add_action( 'woocommerce_after_add_to_cart_button', array( XTS\WC_Wishlist\Ui::get_instance(), 'add_to_wishlist_single_btn' ), 1 );
		}
	}, 100);

Then check how it works.

Best Regards