Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How can I hide certain xprofile custom fields groups in the registration page?


jivany
Participant

@jivany

You would probably have to do something like:

if( bp_the_profile_group != "3" || bp_the_profile_group != "4" ) {
//display the profile stuff in register.php
}

You should be able to just toss that check near the top of that while loop and then remember your closing brace at the bottom.

Skip to toolbar