Forum Replies Created
-
This is not BuddyPress-related error.
You can see that in the URL where the error was caught (right from the email): https://krushivaldemo.com/wp-admin/themes.php?page=gutenberg-widgets
So the problem is in the Gutenberg Widgets plugin.
@pinkdreambox
The avatar system is built into BuddyPress. So you don’t need to install an additional plugin for that.Hey Eric,
I’ve written several plugins for that, but they haven’t been tested for years, so frankly I have no idea whether they work or not.
Please check:
https://github.com/slaFFik/bp-feeds
https://github.com/slaFFik/bp-groups-rss-feed-tabFeel free to report any found issues on GitHub, I will see whether I can fix them.
To install those 2 plugins from GitHub you will need to download ZIP file of the repo and install that zip as a usual plugin using your WordPress admin area.
I’m afraid all bbPress specific questions are better to be asked on the bbPress forum.
I’ve checked their forum and I see that you got some answers, so it’s going, perhaps just not as fast as you wish. But all the help on forums is by volunteers, so it may take time 🙂Hello,
Starting from BuddyPress 3.0 we have removed support for the deprecated and unsupported bbPress 1.x that was bundled with BuddyPress.
As written in our release post:
Most notably, the Legacy Forums component has been removed after 9 years of service. If your site was using Legacy Forums, you need to migrate to the bbPress plugin.
And here is our general bbPress 2.x forum installation guide:
So, @m1000, please follow the migration guide and move everything forum-related to bbPress 2.x, which is faster and overall works better.
Or use
current_user_can('subscriber')
instead of!==
check for IDs.Try this (not tested):
function billysgtr_hide_others_profile() { if ( bp_is_profile() && bp_loggedin_user_id() !== bp_displayed_user_id() ) : wp_redirect( home_url() ); exit; endif; } add_action( 'wp', 'billysgtr_hide_others_profile', 1 );
BuddyPress doesn’t have built-in shortcodes at all.
You can google for “buddypress shortcodes” to find what you might need.
Make sure, that you are looking in a correct place for a registered user.
In case of WordPress Multisite – user can be listed in Network admin area, but NOT listed in individual sites Users.#BuddyPress Newsletter #35 – BuddyPress 2.9.0 RC1, new theme and lots of plugins to consider
Subscribe here: http://bpmail.ovirium.com/
#BuddyPress Newsletter #34 – official updates and some lists of useful links to check out
I believe you should check WPML plugin docs.
https://wpml.org/documentation/related-projects/buddypress-multilingual/ (note the links of required things at the bottom of that page)
This search page can be related as well: https://wpml.org/?s=buddypress
#BuddyPress Newsletter #32 – lots of interesting plugins. Yeah, a bunch of them.
BuddyPress Newsletter #31 – tips and tricks, bbPress, new theme and other things!
BuddyPress Newsletter #29 – Nouveau template pack and several how-tos for BuddyPress
#BuddyPress Newsletter #28 – BP template hierarchy explained, new plugins and a Woffice theme
BuddyPress Newsletter #27 – mainly BuddyPress news, and a new theme – Besocial!
Several days ago sent a new issue!
BuddyPress Newsletter #26 – BP 2.9 news, new plugin, useful code snippets
https://www.getrevue.co/profile/bpmail/issues/26-bp-2-9-news-new-plugin-useful-code-snippets-49928
Just sent a new issue!
BuddyPress Newsletter #25 – BP 2.9 schedule, new BP.org redesign ideas, promo etc
Just sent a new issue!
BuddyPress Newsletter – #24 – BP security release, Community Hosting, BuddyApp Theme, BP with WooCommerce etc
A new issue was released yesterday!
BuddyPress Newsletter #23 – several new plugins (mainly) and a possible new look of BuddyPress.org
@charleswaud
You can install the plugin by yourself and try.What have you managed to do so far? Any code written that at least partially works?
@shanebp
I don’t see reasons against your suggestion. I will do that for future newsletter issues.Try getting the latest version of Kleo theme from themeforest.net. I’m pretty sure this is a theme issue, as BuddyPress itself is quite good in most places performance-wise.
As a general suggestion – activate object caching (memcached or redis) – you will need to talk to your host if you are on a shared/managed hosting, or install everything by yourself if on VPS/VDS/own server. Object caching will greatly help, believe me or not.