-
Varun Dubey replied to the topic 404 on admin create group in the forum How-to & Troubleshooting 6 years, 5 months ago
@somethingelse Please make sure you have enabled group component. If that’s already enabled try with default WordPress theme to debug any site-specific issue.
-
Henry Wright replied to the topic display member updated date? in the forum How-to & Troubleshooting 10 years ago
Have you ever thought about a custom solution using user meta? Something like:
// Hook this to a particular action.
update_user_meta( get_current_user_id(), 'active', current_time( 'mysql' ) );Then you’d get that for display using something like this:
// $last_active will be a date-time string.
[Read more]
$last_active = get_user_meta(… -
sunnyj replied to the topic change the "term" avatar to "profile photo" in the forum How-to & Troubleshooting 10 years, 9 months ago
@somethingelse Pls how do you manage to change it on the edit profile page itself, in the text I will like to do just that and I will be fine.
-
Henry Wright replied to the topic Buddypress Profiles feature request in the forum Requests & Feedback 10 years, 9 months ago
You can render an editor using the WordPress function
wp_editor()
https://codex.wordpress.org/Function_Reference/wp_editor
Also, you might need to remove some BP filters on the member bio content areas – I’m not sure if there are any in place which strip HTML you see.
-
Henry Wright replied to the topic Excluding Roles from the Member's Directory. in the forum How-to & Troubleshooting 10 years, 10 months ago
@somethingelse great to see you got it working for you.
our membership changes regularly… i don’t want to have to re-code my members-loop every time a member leaves or joins
Why must the exclude ID list be fixed?
I wouldn’t suggest doing something like
$excluded_users = '1,2,3';
Rather, your list of IDs to exclude should be dynamic e.g…[Read more]
-
Henry Wright replied to the topic Excluding Roles from the Member's Directory. in the forum How-to & Troubleshooting 10 years, 10 months ago
@somethingelse doing
if ( $wp_user->roles[0] == 's2member_level3' )
inside the loop is great but you might find your pagination doesn’t take your condition into account. For that you’ll need to hook into thebp_ajax_querystring
filterSee the technique in action on the BuddyDev…[Read more]
-
aranjones posted an update 13 years, 7 months ago
@somethingelse HI @somethingelse – thank you, really appreciate that! Once I’ve managed to get rid of the welcome pack welcome message (which at the moment is looking as though it might require the nightmare of a fresh install) I will definitely take a look at the ‘login with ajax’ one.
Glad you sorted your one out. If you’ve got any spare…[Read more]
@somethingelse
Active 4 years, 2 months ago