/**
* @snippet Change return to shop link, send to homepage instead
* @how-to Get CustomizeWoo.com FREE
* @sourcecode https://businessbloomer.com/?p=603
* @author Rodolfo Melogli
* @compatible WooCommerce 3.5.6
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_filter( 'woocommerce_return_to_shop_redirect', 'bbloomer_change_return_shop_url' );
function bbloomer_change_return_shop_url() {
return home_url();
}