I code to my child theme's function.php to exclude the category "workshops" in woocommerce. How to add in a 2nd category (ie. events) to this code? Thanks.
add_action( 'wp', 'vn_remove_related_products' );
function vn_remove_related_products() {
if ( is_product() && has_term( 'workshops', 'product_cat' ) ) {
remove_action( 'woocommerce_after_single_product_summary',
'woocommerce_output_related_products', 20 );
}
}