• Resolved aliaslina

    (@aliaslina)


    Hello,

    Is there a way to add a placeholder to the phone field?

    Thank you for your time,
    Lina

Viewing 1 replies (of 1 total)
  • Plugin Author FAKTOR VIER

    (@faktorvier)

    Hi @aliaslina

    You can add a placeholder with the following hooks.

    Checkout:

    add_filter('woocommerce_checkout_fields', function($fields) {
      $fields['shipping']['shipping_phone']['placeholder'] = 'Your own phone placeholder';
      return $fields;
    }, 50);

    My account:

    add_filter('woocommerce_shipping_fields', function($address_fields, $country) {
      $address_fields['shipping_phone']['placeholder'] = 'Your own phone placeholder';
      return $address_fields;
    }, 50, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘Placeholder to fields’ is closed to new replies.