-
Author
-
February 10, 2019 at 08:27 #218310PcMaxxParticipant
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.February 10, 2019 at 10:48 #218314Kieran_SQModeratorHi,
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 solutionIf 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.
February 11, 2019 at 19:49 #218362RaduModeratorHi,
Use this css snippet to fix that
Use this Javascript snippet to fix that*editedCOPY CODEjQuery(document).ready(function(){ jQuery("input[name='signup_username']").on('change keyup paste',function(){ jQuery(this).val(jQuery(this).val().toLowerCase()); }) })
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 13, 2019 at 17:43 #218488RaduModeratorHi,
Sorry in the javascript code not in CSS sorry, i’ve made a typo mistake.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 13, 2019 at 17:45 #218490PcMaxxParticipantNo problem. Typos happen. So this goes in the function.php?
February 14, 2019 at 14:49 #218532RaduModeratorHi,
add tough this function into functions.php from child
COPY CODEfunction 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
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 15, 2019 at 15:19 #218633RaduModeratorGreat
Have a nice weekend
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.