• Resolved swam2222

    (@swam2222)


    Hi,

    Is there a way to change the text in the Order Notes section> This is the area which reads :

    ‘Notes about your order. e,g special notes for delivery’.

    thanks

    Sam

    • This topic was modified 5 years, 5 months ago by swam2222.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @sqam2222,

    try to use this snippet code in functions.php in child theme:

    function md_custom_woocommerce_checkout_fields( $fields ) 
    {
        $fields['order']['order_comments']['placeholder'] = 'Special notes';
        $fields['order']['order_comments']['label'] = 'Add your special note';
    
        return $fields;
    }
    add_filter( 'woocommerce_checkout_fields', 'md_custom_woocommerce_checkout_fields' );
    

    Or use a plugin like Checkout Form Designer Pro (Even if it says Pro it’s still free).

    Thread Starter swam2222

    (@swam2222)

    Thanks for the code and plugin link, much appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change text in checkout ‘Order Notes’ section’ is closed to new replies.