Home › Forums › WoodMart support forum › wishlist along with add to cart button › Reply To: wishlist along with add to cart button
March 21, 2023 at 4:19 am
#452832
Elise Noromit
Member
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