Thanks for the re-direct…that thread helped me a bunch.
However, after inserting this to my function.php …
function change_return_to_shop_link(){
return home_url().’/store/’;
}
add_filter(‘woocommerce_return_to_shop_redirect’, ‘change_return_to_shop_link’, 50);
I also had to add the following right below it in order to get the Woocommerce “continue shopping” link to work properly on the cart page:
add_filter( ‘woocommerce_continue_shopping_redirect’, ‘change_return_to_shop_link’, 50);
Everything works perfectly now!
Thanks for all the great help!