Hi there,
Woocommerce provides a bunch of Filter Hooks that you can use in your own PHP Snippets to make those kinds of changes:
1. Chang the the return to shop label:
add_filter('woocommerce_return_to_shop_text', 'prefix_store_button');
/**
* Change 'Return to Shop' text on button
*/
function prefix_store_button() {
$store_button = "Back to Products"; // Change text as required
return $store_button;
}
2. Can you share a screenshot of that ? As by default i do not see the Word Price in the Checkout. Just Subtotal and Total.