Remove Accordion style in Registration Page ??

Home Forums Legacy Support Support queries How-to & Troubleshooting Remove Accordion style in Registration Page ??

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #273402
    mohamedtc
    Participant
    How to Remove Accordion-style in Registration Page or disable it forever, I just want a standard style registration form without accordion style. How can I do that? Take a look at the image on this link for more explanation: https://prnt.sc/tdptxc  
    #273474
    Diana
    Participant
    Add this custom css in wp-admin > appearance > customize > custom css .registration .register-section+.register-section h4:after{display:none !important;}
    #273802
    mohamedtc
    Participant
    Thanks so much for your reply, I did what you told me. But there is one more thing if you don't mind. All Headlines on each form is still clickable, and the user can expand and collapse the form, I just want to be not clickable to be only text.   Also, I don't want an option for users to click on headlines to expand or collapse forms.  How can I do that? See the image below https://prnt.sc/tezdb5
    #273864
    Diana
    Participant
    Add this code in wp-admin > Plugins > editor > select wplms customizer plugin > wplms-custopmizer.php add_action('bp_before_account_details_fields','show_account_details_title'); add_action('bp_before_signup_profile_fields','show_profile_details_title'); function show_account_details_title(){     echo "<h4>ACCOUNT DETAILS</h4>"; } function show_profile_details_title(){     echo "<h4>PROFILE DETAILS</h4>"; } Paste this in wp-admin > appearance > customize > custom css .register .register-section h4{display:none !important;} Your issue will be resolved
    #274193
    mohamedtc
    Participant
    Thanks so much
    #274195
    mohamedtc
    Participant
    May I ask one more question about registration page, How can I disable all widgets on the registration page. I mean I don't want any widgets on that page. https://prnt.sc/tg9tr7
    #274270
    Diana
    Participant
    In the backend search for the register page and check which sidebar is set for that page. Then locate that sidebar from wp-admin > appearance > widgets > remove the widgets from that sidebar Now, widgets no longer visible on your page
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove Accordion style in Registration Page ??’ is closed to new replies.