-
Henry Wright replied to the topic User ID in Members Loop in the forum How-to & Troubleshooting 10 years, 8 months ago
echo bp_member_user_id();will output an integer (user ID) like this38. Is that what you want to happen? -
Henry Wright replied to the topic Best Theme for Busy Community? in the forum Creating & Extending 10 years, 8 months ago
Hi @julia_b
http://www.bpinspire.com/ might be useful to you. It showcases lots of popular BuddyPress websites and themes.
-
Henry Wright replied to the topic Notifications of my own forum topic replies-bug? in the forum How-to & Troubleshooting 10 years, 8 months ago
-
Henry Wright replied to the topic Add custom field to activity feed in the forum How-to & Troubleshooting 10 years, 8 months ago
My first thought is how best to open a selectable list of members. You could use a modal but if the list of members is long (30 or more) then a modal + list might not be the best approach.
-
Henry Wright replied to the topic Registration dead ends / Not able to advance to "Activate". in the forum Showcase 10 years, 8 months ago
That information never arrived at the email.
Just a thought, check your spam folder as sometimes activation emails end up there.
I attempted another registration with different credentials and email and this time nothing happened.
This might be a problem with your theme. Try activating TwentyFifteen and complete the registration form again.…[Read more]
-
Henry Wright replied to the topic Stopping html codes and more… in the forum Showcase 10 years, 8 months ago
Here’s an example which strips all HTML from the text of activity comments:
function filter_activity_comment_text( $content ) {
$content = wp_filter_nohtml_kses( $content );
return $content;
}
add_filter( 'bp_activity_comment_content', 'filter_activity_comment_text' );Note, this won’t strip HTML from activity items that already…
-
Henry Wright replied to the topic Add custom taxonomy image on posts display in activity feed in the forum Creating & Extending 10 years, 8 months ago
The template you’ll need to override is entry.php.
-
Henry Wright replied to the topic User registration – activation key? Process not streamlined. in the forum How-to & Troubleshooting 10 years, 8 months ago
Sometimes registration emails aren’t sent
Are you sure they’re not being sent? Could it be that they’re not being received (gone into a spam or junk folder)?
If the user skips this they can login normally
They can log in but unless they’ve activated their account via the email that was sent, or you have manually activated them, they won’t be a…[Read more]
-
Henry Wright replied to the topic Stopping html codes and more… in the forum Showcase 10 years, 8 months ago
a) If I click to “View” the message (not the html link), in the majority of cases I’m taken to the error page. I’m not clear why this is the case?
Did you happen to delete those activity items? The reason I think you are getting the error page is because those activity items don’t exist.
b) Is there a way to disable html coding in these message…
-
Henry Wright replied to the topic Bug Report (class-bp-attachment-avatar.php) in the forum How-to & Troubleshooting 10 years, 8 months ago
Hi @damland
Thanks for the report. Bug reports can be opened on Trac:
https://buddypress.trac.wordpress.org
The username and password you use here in the forums will work there too.
-
EmailChopper's profile was updated 10 years, 8 months ago
-
Manidipta Roychowdhury's profile was updated 10 years, 8 months ago
-
Slava UA updated the Post Types Activities page, on the BuddyPress Codex 10 years, 8 months ago
Note: This guide is for use with BuddyPress 2.2+.
Any public registered post type can be tracked into the activity streams once it has been published. Here are the different options to add the […]
-
Henry Wright replied to the topic Change text on Registration page in the forum How-to & Troubleshooting 10 years, 8 months ago
There is a guide available showing how to get started with Poedit. It isn’t technically demanding, but you do need to follow the steps carefully. Hope this helps!
-
Eskymo replied to the topic Change text on Registration page in the forum How-to & Troubleshooting 10 years, 8 months ago
Hi danbp
I’ve read through that before and it doesn’t sound so easy to me.
I’m not a PHP, BuddyPress or WordPress expert I’m afraid, so editing core files is not something I feel comfortable doing. Plus if I wanted to add an image where would I do that? That’s why I was hoping there was a way to do this using a template file as I want to do more…[Read more]
-
Eskymo replied to the topic Hiding Admin from Members List in the forum How-to & Troubleshooting 10 years, 8 months ago
For you maybe – I’m treading water (just) in the deep end.
Thanks for the code – I’ll give it a go.
-
Henry Wright replied to the topic Hiding Admin from Members List in the forum How-to & Troubleshooting 10 years, 8 months ago
I think it’s pretty straightforward. Try this:
function my_bp_members_loop( $retval ) {
$retval['exclude'] = 1; // This needs to be the ID of your admin user.
return $retval;
}
add_filter( 'bp_after_has_members_parse_args', 'my_bp_members_loop' ); -
lundberglarry4's profile was updated 10 years, 8 months ago
-
Eskymo replied to the topic Hiding Admin from Members List in the forum How-to & Troubleshooting 10 years, 8 months ago
Thanks for the link, but I’m not a WordPress or Buddypress coder, so it’s all a bit beyond me to be honest…
-
Henry Wright replied to the topic Hiding Admin from Members List in the forum How-to & Troubleshooting 10 years, 8 months ago
This can be done with
bp_parse_args(). See the Using bp_parse_args() to filter BuddyPress template loops article for a tutorial. - Load More