Skip to:
Content
Pages
Categories
Search
Top
Bottom

BuddyPress and Avada Mobile Registration Form


  • Bingo Bongo
    Participant

    @darrenllrgmailcom

    Hey guys,

    Avada support came back to me & let me know they have no Buddypress styling, so haven’t checked with 2016. It may be Avada-specific.

    I found a couple of other old topics on this, and I guess you’ve got it tracked, but just in case –

    Mobile Registration looks borked, example here http://www.zetaunit.com/forum-register/ (may be tidied up by the time you see it, so screenshot here – .

    Other than that, I think we’re running smooth now 😉

    Thanks for all the work on Buddypress guys. Very cool.

Viewing 5 replies - 1 through 5 (of 5 total)

  • Lars Henriksen
    Participant

    @adjunkten

    +1 on this.

    It would be better to have profile details displayed below and not next to account details to make mobile registration look better.

    Has anyone found a solution to this?

    Thanks,

    Lars


    danbp
    Participant

    @danbp

    Hi @darrenllrgmailcom, @adjunkten,

    i had the same issue with a custom theme: fields didn’t wrap properly on small screens…
    To solve it, i simply copied the concerned form rules from Twenty Sixteen into my child theme css and all went OK after that.

    The 2016 rules of the register page:

    #buddypress #signup_form.standard-form #profile-details-section,
    #buddypress #signup_form.standard-form #basic-details-section,
    #buddypress #signup_form.standard-form #blog-details-section {
    	float: none;
    	width: 100%;
    }
    
    @media screen and (min-width: 38.75em) {
    	#buddypress #signup_form.standard-form #profile-details-section,
    	#buddypress #signup_form.standard-form #basic-details-section,
    	#buddypress #signup_form.standard-form #blog-details-section {
    		width: 48%;
    	}
    }
    
    @media screen and (min-width: 38.75em) {
    	#buddypress #signup_form.standard-form #profile-details-section {
    		float: right;
    	}
    	#buddypress #signup_form.standard-form #basic-details-section {
    		float: left;
    	}
    }

    Lars Henriksen
    Participant

    @adjunkten

    Thank you @danbp, works like a charm!

    Lars


    Bingo Bongo
    Participant

    @darrenllrgmailcom

    Awesome, thanks Dan 😉

    I also got some CSS – one of the Avada Support guys (Muhammad I think) sent it over to me – needed a few tweaks, but also that now seems to have done the trick with me – if it helps any, great –

    @media all and (max-width: 768px) {
    #buddypress #register-page form#signup_form .register-section{
    width: 100%;
    }
    }
    
    #buddypress .standard-form #basic-details-section input[type="password"], 
    #buddypress .standard-form #blog-details-section input#signup_blog_url, 
    #buddypress .standard-form #basic-details-section input#signup_username,
    #buddypress .standard-form #profile-details-section input#field_1
    {
    width: 100%;
    }

    The only minor bug-bear with me now is the Recaptcha overflowing, but I can live with that.

    For tonight 😉

    Thanks again Dan 😉


    danbp
    Participant

    @danbp

    @darrenllrgmailcom,

    when you bingo bongo a theme like Avada, you should take in account that you have to “integrate” most of external elements such as plugins.

    It’s not a ready to use theme you can deploy over anything without attention. It is a theme buider with hundreds of options in an environment.

    So i guess it is the case with Recaptcha plugin. First thing to do is to check how it reacts whith Twenty Sixteen. If Recaptcha ouput is correct on mobile, pick the css from the plugin and add it to your child theme.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar