Hello,
1) You can delete it in Dashboard > Theme Options > Single Product Page > Custom Tab Title and content for this tab.
2)
a) wp-content/themes/royal/woocommerce folder. Please provide screenshot for better understanding what exactly needs to be changed.
b) You can use this code in functions.php of child theme to change “Add to cart” text on Single product page:
/**
* Change the "Add to Cart" text on the single product page
*
* @return string
*/
function wc_custom_single_addtocart_text() {
return "Your text";
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'wc_custom_single_addtocart_text' );
Regards