-
Paul Wong-Gibbs replied to the topic Using plugin for online gaming community with heavy site traffic in the forum Installing BuddyPress 9 years, 9 months ago
> Whats the maximum visitors you can have on a site using your plugin and wordpress
There is no easy answer for this. WordPress runs well on a variety of small to extremely large sites. Scalability comes down to the exact code being run on the site, the amount of traffic and user interaction, and the infrastructure supporting the site.
Using a…[Read more]
-
Paul Wong-Gibbs replied to the topic Setting up BuddyPress in a multisite enviroment in the forum How-to & Troubleshooting 9 years, 9 months ago
The member filtering isn’t going to work like that by default. You’d need to write some code, though I think it’d work.
The bigger question for you is to decide how you want the BuddyPress/social data to behave across all these sites. You either want to activate BuddyPress network-wide in WordPress, or consider enabling multiblog mode:…[Read more]
-
Pieter replied to the topic How to restrict PM notifications email to excerpt only in the forum How-to & Troubleshooting 9 years, 9 months ago
This is not working anymore, even with the latest ugrades to BP 2.6.1.1 and WP 4.5.3.
Also the emails arrive in non-html version.Who can clear this up?
Thanks in advance,
Pieter -
Henry Wright replied to the topic Custom Post Type Comment Post Title in Activity in the forum How-to & Troubleshooting 9 years, 9 months ago
Here’s an example of how to use the filter:
add_filter( 'bp_blogs_format_activity_action_new_blog_comment', function( $action, $activity ) {
// Do what you wish with $activity here.$action = __( 'Your text here.', 'text-domain' );
return $action;
} ); -
Karol Szczesny's profile was updated 9 years, 9 months ago
-
Henry Wright replied to the topic Custom Post Type Comment Post Title in Activity in the forum How-to & Troubleshooting 9 years, 9 months ago
I’m pretty sure you can use the
bp_blogs_format_activity_action_new_blog_commentfilter to do that. -
Henry Wright replied to the topic How to know the security of a plugin? in the forum Third Party Plugins 9 years, 9 months ago
BuddyPress Follow is one of the best. No need to worry about security or performance when using that plugin; @r-a-y will have your back 🙂
-
Slava Abakumov replied to the topic How To Disable User Avatar Uploads in the forum How-to & Troubleshooting 9 years, 9 months ago
Actually, this setting is still there. Check this screenshot: http://take.ms/TOux7
Check that you have Extended Profiles component activated – as avatars/covers uploading is part of it.
-
Slava Abakumov replied to the topic Login and registration on one page in the forum How-to & Troubleshooting 9 years, 9 months ago
BuddyPress registration page is quite big, it has a lot of inputs.
You can install a widget, called(BuddyPress) Log in. Here is info about it.
If you use Jetpack, there is a module there, that gives ability to define widgets visibility. Here are other plugins: one, two & etc.
Thus you will have ability to define, that this widget should be…[Read more] -
Henry Wright replied to the topic Visibility Conditions Ignoring Single Digit Values in the forum How-to & Troubleshooting 9 years, 10 months ago
I was just about to suggest you contact the plugin author as this sounds like it could be a bug.
-
crawlinson replied to the topic Visibility Conditions Ignoring Single Digit Values in the forum How-to & Troubleshooting 9 years, 10 months ago
Ah HA! My apologies, it seems as though conditional visibility is not a core feature of BP. As I am working with another developer I didn’t realise they had added this functionality through a plugin called “conditional profile fields for buddypress” https://buddydev.com/plugins/conditional-profile-fields-for-buddypress/
Sorry!
-
crawlinson started the topic Visibility Conditions Ignoring Single Digit Values in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi, I have just updated to the latest version of BP and thought I would add visibility conditions to my registration forms. Everything looked great until I noticed the following error:
One field asks for your age, if you type a value less than 18 it is meant to ask for parental consent but for some reason any value between 1 and 10 completely…[Read more]
-
Mohamed Elamine's profile was updated 9 years, 10 months ago
-
Boone Gorges updated the PHP version support page, on the BuddyPress Codex 9 years, 10 months ago
BP supports the latest versions of PHP
BuddyPress supports all stable versions of PHP officially supported by the PHP project.
For the best security and performance, site admins are strongly encouraged to […]
-
Henry Wright replied to the topic Struggling with Group Invites in the forum How-to & Troubleshooting 9 years, 10 months ago
No worries, good luck with your theme!
-
Henry Wright replied to the topic Struggling with Group Invites in the forum How-to & Troubleshooting 9 years, 10 months ago
Ajax fails usually because a necessary class or ID is missing from the DOM. Try doing a quick comparison against the default template to see what classes or IDs your customised template is missing
-
Henry Wright replied to the topic Struggling with Group Invites in the forum How-to & Troubleshooting 9 years, 10 months ago
It just doesn’t work as expected. Is there a guide to implement this template anywhere?
I don’t think there’s a guide available. Can you describe how it isn’t working for you?
-
Paul Wong-Gibbs replied to the topic change email sent on event creation in the forum How-to & Troubleshooting 9 years, 10 months ago
This is definitely not a message sent by the main BuddyPress plugin. I agree with @danbp above.
-
Henry Wright replied to the topic How to get a blog post link from a comment link in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi @danbp
We have just the comment URL to start with so the method you linked to won’t work.
-
Henry Wright replied to the topic How to get a blog post link from a comment link in the forum How-to & Troubleshooting 9 years, 10 months ago
preg_replace() requires a pattern, a replacement and a source string. In your case the source string will be your comment URL. Try this:
$url = 'https://example.com/2016/07/09/post-name/#comment-12';
$pattern = '/#comment-([0-9]+)/';
$replacement = '$1';
$comment_id = preg_replace( $pattern, $replacement, $url );Ref:…[Read more]
- Load More