A theme I'm using modified a woocommerce that I'd like undo in my child theme.
It's been added as shown:
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?
I tried just using remove_action, but that didn't work.