My theme has been modified in a woocommerce that I need to undo in my child theme.
It's been added as
function theme_setup(){
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
add_action( 'woocommerce_before_main_content', 'mod_output_content_wrapper', 10 );
}
How do I remove the add_action?