Forum Replies Created
-
Thanks @bphelp. Would have been nice to have it on the back end but that will work for now.
I did notice that members that logged in prior to the installation of BP Force Plugin don’t have fields for First Name, Last name, and date of birth which is odd. Those fields were on the registration form and were “required” through bp. It appears that BP Force is the only way to make them be actually “required”.
I now have to get the fields back on the users that don’t have them. I have so many questions and issues with buddypress… I’ll keep plugging away…
@hnla I just installed BP Force Profile but I don’t think that was the problem.
The problem is the back end in wordpress. When a profile field is filled out it is not showing up on the back end under the users tab in wordpress.
I get the username but that is all. Can I view a registered users info somewhere?
Say I register and filled out the First name and Last name field. When I go look at users in wordpress those fields are not filled in? I just want to make sure people put in there full names. Otherwise its hard to tell if its a real person or just another spam bot.
thanks.
I got it to work by adding the snippet to the function.php in the the theme.
But now I have two login buttons? How to do get rid of one?
Thanks for all the help btw.
@chouf1 Thanks!
This might be a really stupid question, but where exactly do I add this in the php? I’m a novice at this.
// always show admin bar
function pjw_login_adminbar( $wp_admin_bar) {
if ( !is_user_logged_in() )
$wp_admin_bar->add_menu( array( ‘title’ => __( ‘Log In’ ), ‘href’ => wp_login_url() ) );
}
add_action( ‘admin_bar_menu’, ‘pjw_login_adminbar’ );
add_filter( ‘show_admin_bar’, ‘__return_true’ , 1000 );@chouf1 if I always display the admin bar for wordpress will that login to buddypress too? are they same thing?
@dasped that is checked already and it is still not showing up.
I fixed it! I had to move the Username field off of the Primary tab to a new tab then delete the new tab. Now it works. Thanks.
There is a field there. I don’t remember adding it. It doesn’t have a delete option under it like the other fields do.
@mercime How do I apply the patch? Where do I load it? As you can tell I’m inexperienced.
Thanks for all the help. Once I get this fixed I’m done.
@mercime sorry, one more question. everything looks great but now the login bar is missing from the very top if I’m logged out. Is there a way to get that back.
Worked! Thank You!