Upgraded to WordPress 6.0 and have issues? Please check the hotfix which you need to apply.

Okay
  Public Ticket #1454693
Changes checkout notes and delivery options
Closed

Comments

  • Mark Long started the conversation

    Hi:

    1. How can I change the text in the notes section on the checkout page?

    2. Is it possible to have a delivery option on the checkout page/

    I have attached an image related to the question.

    Thanks,

    Mark

  •  228
    Milingona replied

    Hi Mark,

    1. You can use a plugin like WooCommerce Checkout Manager to manage those fields and also you can add new fields.

    2. You can manually change order notes placeholder text as well by adding the following code in functions.php file.

    add_filter( 'woocommerce_checkout_fields', 'webendev_woocommerce_checkout_fields' );
    function webendev_woocommerce_checkout_fields( $fields ) {     $fields['order']['order_comments']['placeholder'] = 'Your custom placeholder';
        return $fields;
    }

    Hope that helps.

    Kind regards,


    Milingona Support

    Follow on     Envato     Facebook     Twitter

  • Mark Long replied

    Regarding the placeholder, does that go into the regular functions.php or the child theme unctions.php. Also, I am assuming that I will be just replacing the "Your custom placeholder" text?

  •  228
    Milingona replied

    If you're using child theme then you can place the code into child theme functions.php file. And yes, you just need to replace "Your custom placeholder" text.

    Kind regards,


    Milingona Support

    Follow on     Envato     Facebook     Twitter