Do you want to change “You may also like” headline text on WooCommerce pages? You can easily add custom headline in place of “You may also like” title that displays above the WooCommerce products grid section at the bottom part.
Preview: Title above the products grid
PHP Snippet: Change the default title textt
In the WordPress Dashboard, go to Appearance > Theme Editor and open the functions.php file of your child theme. Then add the following code at the end. Alternatively, you can use code snippets plugin for adding custom code.
1 2 3 4 5 6 7 8 9 10 11 12 |
add_filter( 'gettext', 'wpd_change_up_sell_heading', 10, 3 ); function wpd_change_up_sell_heading( $translation_text, $text, $domain ) { if( $domain == 'woocommerce' && is_singular( 'product' ) ) { switch ( $translation_text ) { case 'You may also like…' : $translation_text = 'ENTER YOUR HEADING'; // You will enter your custom text here break; } } return $translation_text; } |
Antonio says
It does not works