Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 465 Bytes

you-may-be-interested-in.md

File metadata and controls

16 lines (14 loc) · 465 Bytes

Change 'You may be interested in' in WooCommerce

Tutorial

  1. Install Code Snippets
  2. Snippets → Add New
  3. Insert into Code:
    add_filter('gettext', 'change_ymbi');
    
    function change_ymbi($translated) 
    {
    	$translated = str_ireplace('You may be interested in', 'Frequently bought together', $translated);
    	return $translated; 
    }
  4. Set the title and press Save changes and activate