Pre-Fill and lock country code

Discussion in 'Feature Requests' started by MKagawa, Apr 1, 2025 at 8:27 AM.

  1. MKagawa

    MKagawa New Member

    Joined:
    Oct 18, 2022
    Messages:
    1
    Likes Received:
    0
    Is there a way to prefill the country code for SMS Auth to "+1"? We want to restrict SMS auth to USA only (+1) and prompt the users to enter only their 10 digit phone number.

    We are finding that a lot of users don't read and only enter their 10 digit number, then complain that they never get the text message.
     
  2. David

    David Administrator
    Staff Member

    Joined:
    Dec 1, 2015
    Messages:
    817
    Likes Received:
    33
    The plus "+" is already automatically added by LF server.
    You can add only "1" in the Phone Number filed with a custom Javascript
    in "Admin > Configuration > Branding > StyleSheets and JavaScript Overrides".

    Code:
    $(function() {
        $('#phone_number').val('1');
      });
     
    #2 David, Apr 2, 2025 at 1:37 AM
    Last edited: Apr 2, 2025 at 1:45 AM

Share This Page