-
Henry Wright replied to the topic Creating a modern web community in the forum Ideas 10 years, 2 months ago
The alternative to having WordPress posts as “topics” and WordPress comments as “topic replies” is to theme bbPress. Check out the Theme Compat article for some introductory info. You can either use an already-made theme, or have a go at developing something unique yourself.
-
Mark started the topic Buddypress 2.5.0 Email Token to Display a Members Avatar in the forum Requests & Feedback 10 years, 2 months ago
Hi guys,
Great update, really like the new email features. I was looking through the email tokens and I was surprised to not see one that allows member avatars to be shown in email templates. Did I miss it? If not, any chance it can be added by me (non coder) or in a future update?
Best Regards,
Mark
-
David Cavins updated the Email Tokens page, on the BuddyPress Codex 10 years, 2 months ago
With the release of BuddyPress 2.5.0, site administrators can easily edit the contents of email notifications. These notifications use “tokens,” which are generic placeholders that are replaced with specific data […]
-
Henry Wright replied to the topic Moderating Forum Posts – Please Help in the forum How-to & Troubleshooting 10 years, 2 months ago
You should ask this same question over at bbPress. Those guys handle forum-related questions ๐
-
Henry Wright replied to the topic place group & user meta outside of the header in the forum How-to & Troubleshooting 10 years, 2 months ago
This can be done by modifying your theme. BuddyPress uses a Template Hierarchy. If you have any specific questions feel free to ask them here ๐
-
Henry Wright replied to the topic How do I change the 'activation successful' text? in the forum How-to & Troubleshooting 10 years, 2 months ago
I suggest you localise. Take a look at at something like Poedit. For more info see the Customizing Labels, Messages, and URLs article.
-
jay johnson's profile was updated 10 years, 2 months ago
-
Mustaasam Saleem's profile was updated 10 years, 2 months ago
-
Mustaasam Saleem replied to the topic How to set up notification counter in WordPress menu in the forum How-to & Troubleshooting 10 years, 2 months ago
This question is already answered many times.
Please have a look. ๐
https://buddypress.org/support/search/notifications+counter/ -
Paul Wong-Gibbs replied to the topic BP 2.5 RC1: php syntax error? in the forum How-to & Troubleshooting 10 years, 2 months ago
Running the dev build means you’re not getting the optimised CSS / JS files.
If you’re able to deploy with a SVN checkout instead of Git, you could use
svn co https://plugins.svn.wordpress.org/buddypress/tags/xxx/ --ignore-externalswhich will not include the bbPress folder from the checkout. -
Paul Wong-Gibbs replied to the topic Buddypress Amazon ec2 in the forum Installing BuddyPress 10 years, 2 months ago
It must be something to do with the server configuration; it could be anything. I’ve used BuddyPress on Amazon instances of all sizes and I’ve never had a problem.
-
Hugo Ashmore replied to the topic How to remove theme's header from profile pages? in the forum How-to & Troubleshooting 10 years, 2 months ago
This requires an understanding of the WP approach to template parts and creating child themes (if you’re not already running as a child theme) plus the BuddyPress template hierarchy as outlined in our codex.
One approach would be to take advantage of the ability to call named template parts in WP so
get_header()can becomeget_header('no-logo')…[Read more] -
Anonymous replied to the topic BP 2.5 RC1: php syntax error? in the forum How-to & Troubleshooting 10 years, 2 months ago
Thanks r-a-y! That’s super helpful. Much appreciated!
Onwardsโฆ
-
Henry Wright replied to the topic Disable Private Messaging TO Specific Users in the forum How-to & Troubleshooting 10 years, 2 months ago
Try this:
function juliahart18_filter_message_recipients( $message ) {[Read more]
$i = 0;
foreach ( $message->recipients as $recipient ) {
// 1 is the ID of the user you want to exclude from the message.
if ( $recipient->user_id == 1 ) {
unset( $message->recipients[$i] );
}
$i++;
}
}
add_action(… -
Scott Offord replied to the topic Warning of Buddypress in the forum How-to & Troubleshooting 10 years, 2 months ago
I’m on BP 2.4.3 and WP 4.4.2.
I’m getting this Message:
PHP Warning: strstr(): Empty needle in /wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 682
-
Henry Wright replied to the topic Remove some features from activity plus in the forum How-to & Troubleshooting 10 years, 2 months ago
Hi John
If you’re referring to the BuddyPress Activity Plus plugin, try asking this same question on their support forum.
-
Henry Wright replied to the topic delete Comments on all pages in the forum How-to & Troubleshooting 10 years, 2 months ago
Check out the Template Hierarchy article. It will show you how to set up templates for BuddyPress. You can then remove the comment section and comment form from the page(s) you want.
-
Henry Wright replied to the topic Refresh Page after Change Profile Photo & Cover Image in the forum Installing BuddyPress 10 years, 2 months ago
You could create a mini plugin for this which uses wp_enqueue_script to enqueue a custom script.
-
Henry Wright replied to the topic Files guide in the forum How-to & Troubleshooting 10 years, 2 months ago
The Template Hierarchy article is what you’re looking for.
-
Jeremy Siow's profile was updated 10 years, 2 months ago
- Load More