Site logo

Archived topic

customize "Related Products" text for a specific product

1 reply · Started by jasond on October 21, 2020

Viewing posts 1–2 of 2

I'm using this snippet to change the Related Products text. Is there any way we can do this for a specific product?

function custom_related_products_text( $translated_text, $text, $domain ) {
  switch ( $translated_text ) {
    case 'Related products' :
      $translated_text = __( 'Other items you might like', 'woocommerce' );
      break;
  }
  return $translated_text;
}
add_filter( 'gettext', 'custom_related_products_text', 20, 3 );
This archived topic is closed to new replies.