Weird question but couldn't find a way to overwrite any hook that is related to product description title. Is there a way to overwrite "Product description" and replace it with my own text? Thanks!
Try the code given below:
add_action( 'admin_enqueue_scripts', 'gs_admin_scripts', 20 );
function gs_admin_scripts(){
wp_localize_script(
'wc-admin-product-editor',
'woocommerce_admin_product_editor',
array(
'i18n_description' => esc_js( __( 'My Custom Description Title is here', 'woocommerce' ) ),
)
);
}
Add the code in the child theme`s functions.php or your plugin.
The code has been tested and working.