Viewing 2 replies - 1 through 2 (of 2 total)
  • The strings starting with __( are translatable, so you can change them with the Say What plugin:
    https://wordpress.org/plugins/say-what/
    Settings:
    Original string: exactly what you get when the site language is US English
    domain: woocommerce
    context: blank

    You can use gettext if you prefer code:

    add_filter('gettext', 'translate_text');
    function translate_text( $translated ) {
      $translated = str_ireplace( 'Choose an option',  'Select',  $translated );    
      return $translated;
    }

    Which element do you want to select with css? Please post a link to your site.

    Plugin Support Missy a11n

    (@m155y5)

    Automattic Happiness Engineer

    Hi @vishalsanghi

    This appears to be a duplicate topic. I responded with some code for you to try here: https://wordpress.org/support/topic/change-checkout-login-message-and-class/

    I’m going to go ahead and resolve this issue. Please feel free to comment on the other post if you have any questions. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Modify login messages and class at checkout page’ is closed to new replies.