AI Verified

Name

Remove the comment field on the checkout page

About

This field is really unnecessary, no major online store I know of uses anything like it. So away with it.

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

jbeer

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

14/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Remove the comment field on the checkout page

 
                    
1if (!function_exists( 'evolution_woocommerce_checkout_fields' ) ) :
2/**
3 * Kommentarfeld auf Kasse Seite entfernen
4 */
5function evolution_woocommerce_checkout_fields( $fields ) {
6 
7 unset($fields['order']['order_comments']);
8 return $fields;
9}
10add_filter( 'woocommerce_checkout_fields' , 'evolution_woocommerce_checkout_fields' );
11endif;

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

WooCommerce Product Time Picker

Added: 1 year ago

Last Updated: 2 months ago

This snippet adds a product time picker to the single product template above the add to cart button and save the time picked against the product as meta data. Once a time is picked against the product...

WooCommerce

AI Verified

0

WooCommerce Change Out Of Stock Text

Added: 1 year ago

Last Updated: 1 week ago

If you’ve enabled stock management on our store, customers will see the stock status on the single product page. If a product does not have availability, they’ll see a red sad face and the text “Out o...

WooCommerce

AI Verified

1

WooCommerce Custom Content Under New Order Email Heading

Added: 1 year ago

Last Updated: 2 months ago

As you know, editing the WooCommerce template core files is a big fat no-no for security and update purposes. If you need to make edits to the emails, you’re much better off doing this by targeting th...

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

3

Confirm Password Field in Woocommerce

Added: 1 year ago

Last Updated: 2 months ago

WooCommerce

AI Verified

3

Redirect customers to own thank-you page after order

Added: 1 year ago

Last Updated: 2 months ago

You may want to redirect your customers to a custom thank you page after they place an order. You can do that with the following WooCommerce snippet

WooCommerce

AI Verified

2

Bypass logout confirmation.

Added: 1 year ago

Last Updated: 3 months ago