Hi,
1- Please paste this code at functions.php of child theme.
<?php
function sf_text_strings( $translated_text, $text, $domain ) {
//$translated_text = strtolower($translated_text);
switch ( $translated_text ) {
case 'Description' :
$translated_text = __( 'Información Complementaria', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'sf_text_strings', 20, 3 );
?>
2- Please use this custom css code:-
div.product_meta{
display:none !important
}
Thanks
Mohammad