-
David Cavins replied to the topic A Favorite BuddyPress Button In Post Pages? in the forum Creating & Extending 6 years, 12 months ago
Great! If you’ve got a working version of favoriting posts from around a site, please share a link to your Github repository or similar. It’s likely that other users are looking for the same functionality.
-David
-
David Cavins replied to the topic Help – Change Profile Photo in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi @gleydsonbr,
Are you having trouble in all browsers or just specific browsers?
-
David Cavins replied to the topic This forum is impossible in the forum Ideas 6 years, 12 months ago
Keep in mind that BuddyPress is developed and supported by an all-volunteer community.
If you are in need of more specialized help or more immediate help than this forum can provide, I’d recommend that you develop a business relationship with a local WP developer. Any WP developer who understand the filters/actions approach of WordPress will be…[Read more]
-
David Cavins replied to the topic I don't have the same setting on my buddypress in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi, the settings are at wp-admin > BuddyPress > Options:
See this image: https://imgur.com/ySqPNZw
If you’re not seeing it, then someone could have set a filter that prevents cover options. (Check for custom code or a plugin.) Or, you could be using a really old version of BP, I guess.
-
David Cavins replied to the topic Register Not Working (Logged Out) in the forum Installing BuddyPress 6 years, 12 months ago
To clarify, you can visit the registration page and fill out the form, but submitting your registration results in no request being generated and you are redirected to your home page?
Can you check your BP setup at wp-admin > Settings > BuddyPress > Pages and verify that there are pages assigned to each of the BP components?
When WP_DEBUG is set…[Read more]
-
David Cavins replied to the topic member/ group: cover image is not visible in the forum How-to & Troubleshooting 6 years, 12 months ago
Is this true when uploading images in every browser, or is it limited to one browser?
What is the error message you are getting?
If you put the url for the image in the cover-image directory in your browser’s location bar, does it load, or is it corrupt, or maybe doesn’t load for some other reason?
-
David Cavins replied to the topic Changing Email Content based on Situation (Taxonomy) in Code in the forum Creating & Extending 6 years, 12 months ago
Sounds like an interesting problem.
You can get all the email situation terms by using a WP taxonomy function, like:
$terms = get_terms( array(
'taxonomy' => 'bp-email-type',
'hide_empty' => false,
) );
Though I’d probably spend a bit more time trying to make the built-in email templating system work. It’s pretty flexible, with the…[Read more]
-
David Cavins replied to the topic Show Follow Button on Each Member's Profile Page in the forum Third Party Plugins 6 years, 12 months ago
Hi @ottiya–
Right. With that plugin, I don’t think you should have to do anything. It hooks into the
'bp_member_header_actions'
to generate the follow button in place of the friend button, so the default member header should work fine. I’d try having no overwrite template in place.If you’re still not seeing the “follow” button, deactivate the…[Read more]
-
David Cavins replied to the topic Question Regarding Group Creation Link in the forum Ideas 7 years ago
Thanks for opening the Trac ticket.
-
David Cavins replied to the topic PHP 7.0 en 7.1 update needed, site is slow in the forum How-to & Troubleshooting 7 years ago
rtMedia is a plugin of its own and not a part of a standard WordPres install. Check out their support forum here:
-
David Cavins replied to the topic Change activity link on a multi language site in the forum How-to & Troubleshooting 7 years ago
Hi Martijn-
I imagine that the reason that no one answered is that none of the volunteers that offer help here knows anything about your specific issue.
You can change the activity directory link like you were guessing, using the
bp_get_activity_directory_permalink
filter:
[Read more]
add_filter( 'bp_get_activity_directory_permalink', function ( $url )… -
David Cavins replied to the topic [Resolved] Change Order by (Groups –> Documents) in the forum How-to & Troubleshooting 7 years ago
Hi Ulrich-
I’m guessing this is also about BP Docs, and the same filter holds the answer:
add_filter( 'bp_after_bp_docs_has_docs_parse_args', function ( $args ) {
$args['orderby'] = 'title';
$args['order'] = 'ASC';
return $args;
} );
-
David Cavins replied to the topic [Resolved] Change number of Viewing item (Groups) in the forum How-to & Troubleshooting 7 years ago
Hi Ulrich-
It sounds like you’re talking about BuddyPress Docs, not BP. If so, there’s a filter, and you could use it something like this:
add_filter( 'bp_after_bp_docs_has_docs_parse_args', function ( $args ) {
$args['posts_per_page'] = 100;
return $args;
} );
-
David Cavins replied to the topic Profile Links – Removing http/https in the forum Creating & Extending 7 years ago
Sounds promising!
-
David Cavins replied to the topic Register issues – Looping in the forum How-to & Troubleshooting 7 years ago
Hello there. BuddyPress doesn’t use a shortcode–a register page just need to exist and be identified. Could you be using some other plugin?
Otherwise, double-check that the register page is properly associated at wp-admin > settings > buddypress.
-
David Cavins replied to the topic Not receiving most notification emails. All plugins deactivated in the forum How-to & Troubleshooting 7 years ago
Hello, if emails are being sent (you’re receiving them at a Yahoo address), then my first guess would be that gmail is treating the mails as spam. Look in your spam folder to see if they’re there.
There are a number of ways to improve deliverability, but that’s beyond the scope of BuddyPress. You might read up on the topic at SparkPost or one of…[Read more]
-
David Cavins replied to the topic Fixing deprecated bp_nav code? in the forum How-to & Troubleshooting 7 years ago
To change items, see the link I referenced: https://codex.buddypress.org/developer/navigation-api/#change-item-names-of-users-and-groups-nav-menus
-
David Cavins replied to the topic Show Follow Button on Each Member's Profile Page in the forum Third Party Plugins 7 years ago
BuddyPress adds the friends button via the action:
add_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );
You’re saying “follow” so I’m assuming that you’re using a plugin that modifies the basic BP behavior. You might check to see that that plugin doesn’t unhook the
bp_add_friend_button()
from the member header.…[Read more] -
David Cavins replied to the topic Profile Links – Removing http/https in the forum Creating & Extending 7 years ago
Huh. Well, I guess you could probably find URLs like that using some regular expression pattern for
<a href="<url>"><url></a>
and apply it like you did at https://core.trac.wordpress.org/ticket/32787, but I’m no regex expert, so I can’t help with that.
It would be easier once
make_clickable()
adds a filter, for sure. -
David Cavins replied to the topic Email's situation's are not displayed… in the forum Requests & Feedback 7 years ago
You can also try the BuddyPress email reinstallation tool if you’re having problems. It’s in WP Admin at Tools > BuddyPress, like
/wp-admin/tools.php?page=bp-tools
. - Load More
@dcavins
Active 5 days, 6 hours ago