Woocommerce “read more” instead of “add to cart” [closed]

If you want to replace add to cart in general, do it like so:

function wpse_124826_add_to_cart_text() {
    return 'read more';
} // function wpse_124826_add_to_cart_text
add_filter('add_to_cart_text', 'wpse_124826_add_to_cart_text');