This topic has 9 replies, 3 voices, and was last updated 5 years by Radu.

  • Author
  • #218310
     PcMaxx
    Participant

    When you entering a Username just as SuperTest in the Elemantor “Create an Account” on the homepage when signing will pass the Uppercase username to Buddypress Registration.  The BuddyPress regestration only accepts lowercase.  Once passed through to Buddypress, the user cannot continue signing because the registration doesn’t know what to do.

     

    Attachments:
    You must be logged in to view attached files.
    #218314
     Kieran_SQ
    Moderator

    Hi,

    I will refer this to a higher level of support for review. They’ll be in touch with you as soon as they can, Monday to Friday, East European Time.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #218362
     Radu
    Moderator

    Hi,

    Use this css snippet to fix that
    Use this Javascript snippet to fix that*edited

    COPY CODE
    
    jQuery(document).ready(function(){
        jQuery("input[name='signup_username']").on('change keyup paste',function(){
        jQuery(this).val(jQuery(this).val().toLowerCase());
         })
    })
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #218403
     PcMaxx
    Participant
    This reply has been set as private.
    #218472
     PcMaxx
    Participant

    Any thoughts on this?

    #218488
     Radu
    Moderator

    Hi,

    Sorry in the javascript code not in CSS sorry, i’ve made a typo mistake.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #218490
     PcMaxx
    Participant

    No problem. Typos happen. So this goes in the function.php?

    #218532
     Radu
    Moderator

    Hi,

    add tough this function into functions.php from child

    COPY CODE
    
    
    function sqr_add_js_footer() {
        
            echo "   
            <script>            
                jQuery(document).ready(function(){
                    jQuery(\"input[name='signup_username']\").on('change keyup paste',function(){
                    jQuery(this).val(jQuery(this).val().toLowerCase());
                     })
                })
             </script>
            ";
    }
    
    add_action('wp_footer', 'sqr_add_js_footer');
    
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #218577
     PcMaxx
    Participant

    Yup… That worked.

    #218633
     Radu
    Moderator

    Great
    Have a nice weekend
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 10 posts - 1 through 10 (of 10 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?