Thanks Mohammad
The first question works well (hide sku)
Though could you explain the child theme – I have installed and activated the neighbourhood-child theme and looked for a functions.php – there wasn’t one, so I created a file in the directory and posted the code – this resulted in syntax errors, so I encapsulated it in <?php ?> but it still failed.
Please let me know what the contents for the functions.php and I will amend
<?php
function sf_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘Add to shopping bag’ :
$translated_text = __( ‘Add to Cart’, ‘woocommerce’ );
break;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘sf_text_strings’, 20, 3 );
?>
Thanks