Home › Forums › WoodMart support forum › Editing Wishlist Page › Reply To: Editing Wishlist Page
October 16, 2024 at 11:07 am
#605375
Hung Pham
Keymaster
Hello nikkylikescoffee,
Thanks for reaching to us.
Try to add the following code in the function.php of the child theme.
function custom_woodmart_wishlist_return_to_shop_url() {
return 'https://your-custom-link.com';
}
add_filter('woodmart_wishlist_return_to_shop_url', 'custom_woodmart_wishlist_return_to_shop_url');
Make sure to replace your-custom-link.com
with the URL you want to redirect to.
Best Regards,