For products that cannot be purchased directly, WooCommerce may display a “Read more” button. You can replace it with custom text such as “View Product” or “See Details.”
Steps
- Add the code below to your theme’s
functions.php. - Replace
View Productwith your preferred text. - Save the file and refresh your Shop page.
/**
* Change WooCommerce "Read more" button text
*/
function custom_woocommerce_read_more_text( $text ) {
return 'View Product';
}
add_filter(
'woocommerce_product_add_to_cart_text',
'custom_woocommerce_read_more_text'
);