-
bp-help replied to the topic Profanity Filter! Any suggestions? in the forum Showcase 10 years, 8 months ago
@fitrighani
You must have entered something wrong because I have it working. On line 208 in wp-content-filter.php which is an empty line just add:
[Read more]
add_filter('bp_get_activity_action', 'pccf_filter');
add_filter('bp_get_activity_content_body', 'pccf_filter');
add_filter('bp_get_the_topic_title',… -
bp-help updated the BuddyPress Plugin Development page, on the BuddyPress Codex 10 years, 11 months ago
Introduction
BuddyPress allows easy modification, customization, and enhancement to a BuddyPress powered WordPress site. Instead of changing the core programming of BuddyPress, you can add functionality with […] -
bp-help replied to the topic [Resolved] Member Profile Private in the forum How-to & Troubleshooting 11 years ago
@1missrodnee
Yes there is a work around, on line 37 in private-community-for-bp-lite.php you will see:
if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page()
Change that line to this:
if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() && !is_home()
The && !is_home() inclusion will free…[Read more]
-
bp-help replied to the topic How to Contribute to BuddyPress if I'm not a programmer? in the forum Requests & Feedback 11 years ago
@synaptic
This may sound a bit off but it is just a suggestion so please do not take it as down playing what you are trying to achieve. Instead of relying on the Dev’s to do the coding for you all the time, try learning something new like how to code. It is possible for you and I personally think people only set their own limits because they are…[Read more] -
bp-help replied to the topic Small issue in the forum Installing BuddyPress 11 years ago
@clanvision
You will get support here if there is someone who is available to answer your support requests. You can’t expect volunteers to help you on demand. Sometimes they have the answers and sometimes they don’t. They do the best they can to help here considering that they are taking their personal time to offer the support. If you expect help…[Read more] -
bp-help replied to the topic Future of BuddyPress? in the forum Miscellaneous 11 years ago
The article didn’t say JJJ deserted BP all together. It simply points out that he took another job and Boone appears to be taking more initiatives as far as BP is concerned. Trolling is when you intentionally act like a pr*ck just to get a rise out of people on the net. Pardon my candor!
-
bp-help replied to the topic remove CSS underline from links (bp default theme) in the forum Creating & Extending 11 years ago
@mehdi-w
If you are referring to the profile links then this little nugget might help:
https://github.com/bphelp/bp-remove-profile-links
Download the zip and install like any other plugin.
Otherwise as @mercime asked you need to be more specific. -
bp-help replied to the topic 1.9 top features – ideas in the forum Requests & Feedback 11 years ago
@synaptic
I don’t really see why you think custom post types is a BP issue but then again maybe I just need a solid explanation of what benefits it would have towards the BP components. When I said I resolved all of my issues with BP I meant my personal issues and not the worlds! Everyone has different requirements, I have just fixed all of mine. Cheers! -
bp-help replied to the topic 1.9 top features – ideas in the forum Requests & Feedback 11 years ago
@ubernaut
At one point I was feeling some fire with development but I have to admit the fire smoldered and eventually died. I just don’t see any passion in this anymore! Everything 1.9 offered I have fixed months and months ago in my my own development server, so it is just a boring version release with nothing all that special plus it is a beta…[Read more] -
bp-help replied to the topic 1.9 top features – ideas in the forum Requests & Feedback 11 years ago
@sooskriszta
No need in calling me out on this as I am not impressed at all with just a version number. A version number is not a big deal when there is not any major features added that I have not already found solutions for, so please save your pings next time. See:
http://wpmu.org/what-not-to-expect-in-buddypress-1-9/ -
bp-help replied to the topic Disable Buddypress Sitewide Activity RSS in the forum How-to & Troubleshooting 11 years ago
@tse11
Use init hook instead of bp_init! Place in bp-custom.php :
https://codex.buddypress.org/plugindev/bp-custom-php/
[Read more]
function pcfbp_lite_cut_nonreg_visitor_rss_feed() {
if ( !is_user_logged_in() ) {
remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ,3 );
remove_action( 'bp_actions', 'bp_activity_action_personal_feed' ,3… -
bp-help replied to the topic phpMyAdmin user status activate members in the forum How-to & Troubleshooting 11 years, 1 month ago
@robg48
If all went well with the import they should! -
bp-help replied to the topic phpMyAdmin user status activate members in the forum How-to & Troubleshooting 11 years, 1 month ago
@robg48
Those 2300 must not have logged in the first time. If they have not, they will not show up in the members directory. If they have not logged in yet I would imagine a good majority of them are spam accounts. Good luck! -
bp-help replied to the topic phpMyAdmin user status activate members in the forum How-to & Troubleshooting 11 years, 1 month ago
@robg48
Did you check in dashboard/settings/buddypress/pending activations? -
bp-help replied to the topic phpMyAdmin user status activate members in the forum How-to & Troubleshooting 11 years, 1 month ago
@fel3000 @robg48
You can activate users using that method. However I would advise backing up the database before doing these edits. Even after activating a user this way they still will not show up in the members directory until they login the first time. Instead of fiddling around in the database why not just use a plugin to activate…[Read more] -
bp-help replied to the topic Members directory dropdown sort issue (possible bug) in the forum Installing BuddyPress 11 years, 1 month ago
Still waiting for confirmation if this is a known bug? I really don’t think users that have not activated their account with the activation email should be showing up in the members directory when sorting the members alphabetically because logically they should not be considered members until they have completed the registration and activation…[Read more]
-
bp-help replied to the topic Users Register On Front Page in the forum How-to & Troubleshooting 11 years, 1 month ago
@marketingnate
You can probably get some useful info from the below tutorial:
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
Just take the parts you need from it. Good luck! -
bp-help replied to the topic Can BuddyPress be used as a business directory service? in the forum Miscellaneous 11 years, 1 month ago
@ugcheleuce
BuddyPress can do this “Out of the Box.” Please review:
https://codex.buddypress.org/buddypress-components-and-features/extended-profiles/ -
bp-help replied to the topic Members directory dropdown sort issue (possible bug) in the forum Installing BuddyPress 11 years, 1 month ago
@henrywright-1
I would suppose it is handled by the registration since a non-activated user is issued a URL. To me this seems like a security issue but I would like to get more feedback on this. Thanks! -
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
If the server is the culprit for mistakenly taken a user to that page it really isn’t a BuddyPress issue, it is a server issue. - Load More
@bphelp
Active 9 years, 1 month ago