Change WooCommerce “Related Products” Text

Changing the “Related Products” text in WooCommerce 4 requires a small piece of code. Add this into your child theme functions.php file, changing “Your Custom Text Here” to whatever you want:

Code

add_filter( 'gettext', 'wtd_related_products_text', 20, 3 );
function wtd_related_products_text( $translated_text, $text, $domain ) {
	switch ( $translated_text ) {
	case 'Related products' :
      		$translated_text = __( 'Your Custom Text Here', 'woocommerce' );
      	break;
  	}
	return $translated_text;
}
Article published 26th March 2020
Last modified 02nd November 2023

Loading