I'm customizing a WooCommerce theme and am going to be moving the title. There is an action in content-single-product.php called do_action( 'woocommerce_single_product_summary' ); in the woocommerce_hooks.php file the title action is add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
I can easily comment this out and place the title function where I need to. I'd prefer to disable the title using a function in my themes functions file so I don't have to worry about modifying core files. What would the function be to disable this title action?
Thanks
