Change “Return to Shop” Button text in WooCommerce a WordPress plugin this is quit easy to change it using gettext filter. If you are not using shop or name it something like back to home or store.
<?php
add_filter( 'gettext', 'cxc_change_woocommerce_return_to_shop_text', 20, 3 );
function cxc_change_woocommerce_return_to_shop_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Return to shop' :
$translated_text = __( 'Return to Store', 'cxc-codexcoach' );
break;
}
return $translated_text;
}
?>
Alternative solutions
<?php
add_filter( 'woocommerce_return_to_shop_text', 'cxc_woocommerce_return_to_shop_text_button' );
function cxc_woocommerce_return_to_shop_text_button() {
$store_button = "Back to Store"; // Change text as required
return $store_button;
}
?>
Code goes in function.php file of your active child theme (or active theme).
nice article, but how can i add return to store when i have products in cart and want a specific product to be carted 1st as mandatory