Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 2, 2020 11:55
Show Gist options
  • Select an option

  • Save yousufansa/c37bde6bb78c1bf4a647601a091d3d29 to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/c37bde6bb78c1bf4a647601a091d3d29 to your computer and use it in GitHub Desktop.
Cartzilla - Remove All Error Message Form Single Product Page
if ( ! function_exists( 'cz_child_remove_woocommerce_error_notice' ) ) {
function cz_child_remove_woocommerce_error_notice( $types ) {
if ( is_product() && ( $key = array_search('error', $types) ) !== false) {
unset( $types[$key] );
}
return $types;
}
}
add_filter( 'woocommerce_notice_types', 'cz_child_remove_woocommerce_error_notice', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment