-
bp-help replied to the topic A user asked for an activation key while registering to my site . in the forum Installing BuddyPress 11 years, 1 month ago
@ubernaut
No it is not supposed to happen but unfortunately it does. I believe it is more of a servers time handling of the activation email that causes this issue. I have seen this happen before and if the user just ignores the enter activation key and just logs in then they are successful. -
bp-help replied to the topic Members directory dropdown sort issue (possible bug) in the forum Installing BuddyPress 11 years, 1 month ago
Sorry meant to post in “How to & troubleshooting” either way, Can anyone confirm this issue as a bug and if there may be a ticket for it in trac? Thanks!
-
bp-help replied to the topic Linking user avatar to user profile page in the forum Installing BuddyPress 11 years, 1 month ago
Add the below code to bp-custom.php reference:
https://codex.buddypress.org/plugindev/bp-custom-php/
define( 'BP_DEFAULT_COMPONENT', 'profile' );
-
bp-help replied to the topic A user asked for an activation key while registering to my site . in the forum Installing BuddyPress 11 years, 1 month ago
@garima-nag
Worked fine for me! After the user clicks the activation email link test it and see if they can just login even though it asks for an activation key. In other words just ignor that activation key page and login in using the credentials they signed up with. Let us know if they are able to login. -
bp-help started the topic Members directory dropdown sort issue (possible bug) in the forum Installing BuddyPress 11 years, 1 month ago
Hi everyone! Just wondering if sorting members alphabetically in the dropdown menu is a confirmed bug? Here is the scenario, a logged in user sorts the members directory using the drop down menu alphabetically and non-activated users that have not even activated their account are listed in the members directory. Non-activated users should not be…[Read more]
-
bp-help replied to the topic BP site slow to load in the forum How-to & Troubleshooting 11 years, 1 month ago
@micasuh
I just know from experience that I had two BP sites running on a shared server and both ranked fairly high on google at one point. The host locked down both of them and I could no longer access them because they said it consumed more than 20% of the shared servers CPU resources. They told me I would need to upgrade to a VPS minimum but I…[Read more] -
bp-help replied to the topic BP site slow to load in the forum How-to & Troubleshooting 11 years, 1 month ago
@micasuh
I will not argue that. A server that works well under a standard WP installation may slow drastically when BP comes into play. It definitely needs more resources than a standard WP installation. -
bp-help replied to the topic BP site slow to load in the forum How-to & Troubleshooting 11 years, 1 month ago
@jf_trumpet
Unless the hosting company explicitly told you that it was a dedicated server then most likely it is shared server or VPS! Ultimately a dedicated server is most ideal for BP but can be expensive! Depending on the amount of users accessing the site in a given period a VPS may serve you well. -
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 11 years, 1 month ago
@ladydekade
After further thought you may want to add the code supplied in bp-custom.php instead of modifying the code in the plugin because if you update that plugin in the future it will be overwritten and you would have to add it back but if it is in bp-custom.php it will remain untouched! -
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 11 years, 1 month ago
@ladydekade
You will also want to add this below the above code so it covers bbPress!
add_filter('bp_get_the_topic_title', 'pccf_filter');
add_filter('bp_get_the_topic_post_content', 'pccf_filter');
In that list of swear words you may find a few words with a semi-colon(;) after them. You will need to remove those semi-colons as all is…[Read more]
-
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 11 years, 1 month ago
@ladydekade
For donuts and coffee I tested it myself and it works but if you copied and pasted that patch code from the site it won’t work because the single quotes are not right. In wp-content-filter.php at line 208 add this:
add_filter('bp_get_activity_action', 'pccf_filter');
add_filter('bp_get_activity_content_body', 'pccf_filter');
Save…[Read more]
-
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 11 years, 1 month ago
@ladydekade
No I haven’t tested either one. I would suggest trying the free plugin (wp-content-filter) and adding the patch before purchasing a service. Try it out then if it doesn’t work let us know. -
bp-help replied to the topic Favorites in Profile Activity in the forum How-to & Troubleshooting 11 years, 1 month ago
@carmeetsroad
Study the activity-loop.php:
Take note of the scope parameter. You can pass favorites as an argument like so:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&scope=favorites' ) ) : ?>
-
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 11 years, 1 month ago
@ladydekade
You can try this:
https://wordpress.org/plugins/wp-content-filter/
and try patching it like this:
http://www.presscoders.com/plugins/wp-content-filter/#comment-61385
Let us know if that works out. The only other option I see is a paid service:
https://wordpress.org/plugins/webpurifytextreplace/ -
bp-help replied to the topic New to BuddyPress – introductory questions in the forum How-to & Troubleshooting 11 years, 1 month ago
@jiminps
Even though the first question deals with bbPress the answer is it depends on what you mean by capabilities. You can can assign user roles like keymaster, moderator, participant, spectator, or blocked.
Yes, private messages can be sent and received. If you only want messages to be sent between a member and the admin that would require use…[Read more] -
bp-help replied to the topic Newbie help required – Login and registration configuration in the forum How-to & Troubleshooting 11 years, 1 month ago
@shaungreen
Sounds like you got some issues in your theme. Anyway if want to activate that widget simply click and drag it to the right in the appropriate widget section. On this note I am going to bed! -
bp-help replied to the topic One group Per Member in the forum How-to & Troubleshooting 11 years, 1 month ago
@ladydekade
It may help the rest of the volunteers answer you if you provide details on your install as listed here:
https://buddypress.org/support/topic/when-asking-for-support-2/ -
bp-help replied to the topic Newbie help required – Login and registration configuration in the forum How-to & Troubleshooting 11 years, 1 month ago
@shaungreen
Dashboard/settings/buddypress/settings
Make sure the box is checked beside show the toolbar for logged out users!
If it is checked and the toolbar is still not showing up for logged out users then you have a theme issue! -
bp-help replied to the topic One group Per Member in the forum How-to & Troubleshooting 11 years, 1 month ago
@ladydekade
Lesson learned! -
bp-help replied to the topic One group Per Member in the forum How-to & Troubleshooting 11 years, 1 month ago
@ladydekade
Sure you can hard code anything if you want too as long as you know what to do just make sure it is done in a child theme!
As far as your issues with developers, maybe you should agree to certain things with the client and if they decide to change things after the…[Read more] - Load More
@bphelp
Active 9 years, 1 month ago