Forum Replies Created
-
In reply to: facing issue with website from buddypress
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.
In reply to: The Avatar used in BuddyPress Plugin page@pinkdreambox
The avatar system is built into BuddyPress. So you don’t need to install an additional plugin for that.In reply to: import rss feeds to activity streamHey 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.
In reply to: Help pleaseI’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 🙂In reply to: No more Forums tab inside the group since 3.0Hello,
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 );In reply to: RegistrationBuddyPress doesn’t have built-in shortcodes at all.
You can google for “buddypress shortcodes” to find what you might need.
In reply to: Can’t find registered user in backend?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.In reply to: BuddyPress Newsletter relaunched#BuddyPress Newsletter #35 – BuddyPress 2.9.0 RC1, new theme and lots of plugins to consider
Subscribe here: http://bpmail.ovirium.com/
In reply to: BuddyPress Newsletter relaunched#BuddyPress Newsletter #34 – official updates and some lists of useful links to check out
In reply to: How buddypress manages WPML urlsI 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
In reply to: BuddyPress Newsletter relaunched#BuddyPress Newsletter #32 – lots of interesting plugins. Yeah, a bunch of them.
In reply to: BuddyPress Newsletter relaunchedBuddyPress Newsletter #31 – tips and tricks, bbPress, new theme and other things!
In reply to: BuddyPress Newsletter relaunchedBuddyPress Newsletter #29 – Nouveau template pack and several how-tos for BuddyPress
In reply to: BuddyPress Newsletter relaunched#BuddyPress Newsletter #28 – BP template hierarchy explained, new plugins and a Woffice theme
In reply to: BuddyPress Newsletter relaunchedBuddyPress Newsletter #27 – mainly BuddyPress news, and a new theme – Besocial!
In reply to: BuddyPress Newsletter relaunchedSeveral 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
In reply to: BuddyPress Newsletter relaunchedJust sent a new issue!
BuddyPress Newsletter #25 – BP 2.9 schedule, new BP.org redesign ideas, promo etc
In reply to: BuddyPress Newsletter relaunchedJust sent a new issue!
BuddyPress Newsletter – #24 – BP security release, Community Hosting, BuddyApp Theme, BP with WooCommerce etc
In reply to: BuddyPress Newsletter relaunchedA new issue was released yesterday!
BuddyPress Newsletter #23 – several new plugins (mainly) and a possible new look of BuddyPress.org
In reply to: Email all users of updated Forums@charleswaud
You can install the plugin by yourself and try.In reply to: Email all users of updated ForumsWhat have you managed to do so far? Any code written that at least partially works?
In reply to: BuddyPress Newsletter relaunched@shanebp
I don’t see reasons against your suggestion. I will do that for future newsletter issues.In reply to: buddypress slow for logged-in usersTry 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.