Hey Bryan,
1. In Appearance > Customize > WooCommerce, disable Related Products
2. Please add the code below in your functions.php
function change_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'You may also like…' :
$translated_text = _e( 'Customers also purchased', '__x__' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'change_text', 20, 3 );
Hope that helps. 🙂