Home › Forums › Support › How to change the text on the Woocommerce checkout page This topic has 4 replies, 2 voices, and was last updated 3 years, 9 months ago by David. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts December 16, 2021 at 3:38 am #2050797 Wendy Hello awesome team at GP 🙂 I don’t know if it is even possible to do this, but could there be a way to change some of the text on the Woocommerce checkout page? For instance the heading ‘Order notes (optional)’ and the text inside the little box below it ‘Notes about your order eg special delivery’ Thank you December 16, 2021 at 3:40 am #2050798 Wendy https://www.glow-skincare.com/checkout-3/ is the page December 16, 2021 at 5:28 am #2050872 DavidStaff Customer Support Hi there, it requires some PHP, you can update the label which defaults to: ‘Order notes (optional)’ and the forms placeholder. function db_modify_woo_checkout_fields( $fields ) { $fields['order']['order_comments']['label'] = 'Your Order Notes form label here'; $fields['order']['order_comments']['placeholder'] = 'Your Order Notes form placeholder here'; return $fields; } add_filter( 'woocommerce_checkout_fields', 'db_modify_woo_checkout_fields' ); Theres a whole bunch of other fields and filters available – for reference: https://woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/ HOW TO Add PHP: https://docs.generatepress.com/article/adding-php/ December 16, 2021 at 6:45 am #2050933 Wendy David that is Super Fabulous!! Thank you so much! OMG you guys know how to make us happy 🙂 December 16, 2021 at 8:05 am #2051161 DavidStaff Customer Support Awesome – glad to be of help! Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In