How do I change the link of the Return to shop button WooCommerce?

How do I change the link of the Return to shop button WooCommerce_
1144 Views
0
(0)

WooCommerce default redirect on shop page when Cart is empty. The filter woocommerce_return_to_shop_redirect makes it easy to change Return to shop link.

<?php
add_filter( 'woocommerce_return_to_shop_redirect', 'cxc_woocommerce_change_return_to_shop_url' );

function cxc_woocommerce_change_return_to_shop_url() {
	return site_url();
}
?>

Code goes in function.php file of your active child theme (or active theme).

How useful was this blog?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this blog.

As you found this blog useful...

Follow us on social media!

We are sorry that this blog was not useful for you!

Let us improve this blog!

Tell us how we can improve this blog?

Leave a comment

Your email address will not be published. Required fields are marked *