-
David Cavins replied to the topic How do I link blog post authors to their BP profiles? in the forum How-to & Troubleshooting 6 years, 8 months ago
Yes, anywhere that the author link is created using the
the_author_posts_link()
function, the link will no longer be/author/username
but/members/username
. -
David Cavins replied to the topic How do I link blog post authors to their BP profiles? in the forum How-to & Troubleshooting 6 years, 8 months ago
You’ll have to read the syntax error warning to see where it is. My code starts with a
<?php
tag you won’t need if you’re adding it to an existing php file, for instance, so that could be tripping you up. -
David Cavins replied to the topic Members Component has no Associated Pages in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi @baccoeur. What happens if you disable the plugin that includes Widget_Stockdio_Ticker? It sounds like the page load is being aborted before BP can save the values.
-
David Cavins replied to the topic backslash apostrophe bug in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi @mbv–
The data should be slashed on the way into the database. When you call the activity content using
bp_get_activity_content_body()
, many filters are applied, includingstripslashes_deep
here: https://buddypress.trac.wordpress.org/browser/tags/2.9.3/src/bp-activity/bp-activity-filters.php#L82If you’re displaying activity using an activity…[Read more]
-
David Cavins replied to the topic Images are missing at Group Type Codex in the forum Installing BuddyPress 6 years, 8 months ago
Thanks for the heads up! I’ll see if the original authors have those images stored away somewhere.
-
David Cavins replied to the topic Translate Buddy press in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi @jungdchinese–
In the short term, you can copy the .pot file out of the 2.9.2 release and replace the bad one in the 2.9.3 file. You can download the 2.9.2. .pot here: https://plugins.trac.wordpress.org/browser/buddypress/tags/2.9.2
-
David Cavins replied to the topic How do I link blog post authors to their BP profiles? in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi, the easiest way to do this is to filter the WP “author link” so that it redirects to the member’s BP profile: https://gist.github.com/dcavins/94e4989cad997d0553e8e5db37f30b40
If you want to change the template used by an article, it will depend on your theme. For instance, if you were using twentyseventeen and wanted to add the author’s link…[Read more]
-
David Cavins replied to the topic How to link to BB member profile instead of author profile? in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi, the easiest way to do this is to filter the WP “author link” so that it redirects to the member’s BP profile: https://gist.github.com/dcavins/94e4989cad997d0553e8e5db37f30b40
If you want to change the template used by an article, it will depend on your theme. For instance, if you were using twentyseventeen and wanted to add the author’s link…[Read more]
-
David Cavins replied to the topic Translate Buddy press in the forum How-to & Troubleshooting 6 years, 8 months ago
Hi @jungdchinese–
Thanks for bringing this issue up. Yes, the .pot file has been broken in the most recent release and we’ll be fixing it as soon as we can.
-David
-
David Cavins replied to the topic group superuser role in the forum Creating & Extending 6 years, 8 months ago
Hi @louie171,
You are correct that group permissions are mostly independent of WP roles. The exception is that WP “administrators” can basically do everything that a group admin can do, but in any group. Site admins are always allowed to do things that are protected by this permissions check:
bp_current_user_can( 'bp_moderate' )
. This is not…[Read more] -
David Cavins replied to the topic A Favorite BuddyPress Button In Post Pages? in the forum Creating & Extending 6 years, 8 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, 8 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, 9 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, 9 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, 9 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, 9 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, 9 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, 9 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 6 years, 9 months 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 6 years, 9 months ago
rtMedia is a plugin of its own and not a part of a standard WordPres install. Check out their support forum here:
- Load More
@dcavins
Active 1 month, 2 weeks ago