-
r-a-y posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
stevieg – It’s probably because the following theme hooks are missing in Template Pack:
https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/functions.php#L339stwc – If you’ve customized your BP theme files to oblivion in your WP theme, then don’t upgrade / reset the template files!
-
r-a-y posted on the forum topic override css from imported rss feed in the group How-To and Troubleshooting: 13 years, 6 months ago
This is not right forum to post at; the WordPress support forum is more appropriate:
Anyway, a quick answer, you’ll need to filter the RSS content and do your formatting that way. If it’s as simple as removing a few inline styles, you could do a search and replace on the content.
-
r-a-y posted an update 13 years, 6 months ago
@embergermedia Thread is reopened, but they are both very similar.
-
r-a-y posted on the forum topic Call to arms – Own your task in the group Requests & Feedback: 13 years, 6 months ago
If those template functions are similar, I don’t see a problem changing it, but get_template_part() fires an action, but it doesn’t let you filter things. What’s the benefit? get_template_part() isn’t filterable, but creating a wrapper function would do the job much like the bbPress plugin is doing. (Sorry if I wasn’t clear above.) I basically wrote […]
-
r-a-y posted on the forum topic How to Display Profile Field in the Topic Template in the group How-To and Troubleshooting: 13 years, 6 months ago
Your first example code is closer, but you need to put those parameters in an array:
bp_profile_field_data( array( 'field' => FIELDID, 'user_id' => my_topic_poster_id() ) );
-
r-a-y posted on the forum topic installing and using Group Email Subscription – 2nd try in the group Installing BuddyPress: 13 years, 6 months ago
The frontend is to the main location of your groups or singular group:
hxxp://example.com/groups
hxxp://example.com/groups/YOURGROUPThat plugin is not intended for blog subscriptions; you’d have to find another plugin for that:
https://wordpress.org/extend/plugins/tags/subscribe -
r-a-y posted on the forum topic Would Buddy Press work for this? in the group Creating & Extending: 13 years, 6 months ago
You could turn BP groups into locations. There are a few album plugins that work for groups. BP Gallery by buddydev.com works as far as I know and BP Media is scheduled to have this functionality as well. Members could create new locations by creating new groups. Remember to change the groups slug to locations: […]
-
r-a-y posted on the forum topic Install a plugin twice in the group How-To and Troubleshooting: 13 years, 6 months ago
There should be hooks in BuddyPress Links to accomplish what you’re after.
You’ll have to dive through the documentation and the source code though.
-
r-a-y posted on the forum topic How to Display Profile Field in the Topic Template in the group How-To and Troubleshooting: 13 years, 6 months ago
Check out the bp_profile_field_data() function (located in bp-xprofile/bp-xprofile-templatetags.php): https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-xprofile/bp-xprofile-templatetags.php#L551 It takes “user_id” as a parameter. Since you’re referring to the topic template, you’ll need to use a custom function to grab the topic poster ID…[Read more]
-
r-a-y posted on the forum topic Install a plugin twice in the group How-To and Troubleshooting: 13 years, 6 months ago
If you duplicated everything and renamed everything, then technically, you should be able to activate them both.
What’s the plugin in question?
-
r-a-y posted on the forum topic Please give me your oppinions – I broke the rules. in the group Creating & Extending: 13 years, 6 months ago
You can do whatever you want with your theme. However, since you’re not using a child theme of bp-default, your theme subsequently will not receive any updates for bugs or features when a new version of BuddyPress is released. You’d then have to manually check over new BuddyPress releases and merge them into your custom […]
-
r-a-y posted on the forum topic Duplicate version of groups on same site. Ajax.php in the group How-To and Troubleshooting: 13 years, 6 months ago
If you duplicated and renamed the function and add_action, you’d also need to add some javascript, so WP will recognize the new AJAX function.
Check out the following lines in in /bp-default/_inc/global.js:
https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/_inc/global.js#L607 -
r-a-y posted on the forum topic Duplicate version of groups on same site. Ajax.php in the group How-To and Troubleshooting: 13 years, 6 months ago
Instead of adding your tournament code directly into the bp_dtheme_ajax_invite_user() function, you’d need to duplicate and rename that entire function and add_action and do a search and replace for groups to tournaments.
-
r-a-y posted on the forum topic Admin forgot to activate at least 1 widget in the group How-To and Troubleshooting: 13 years, 6 months ago
Sounds like you’re using the BP My Home plugin:
https://buddypress.org/community/groups/bp-my-home/Post in that group and let the plugin developer know what’s going on.
-
r-a-y posted on the forum topic Sorting your activities in the group Requests & Feedback: 13 years, 6 months ago
The bug tracker is available here:
https://buddypress.trac.wordpress.org/Login with the same username and password as you use here on buddypress.org.
-
r-a-y posted on the forum topic Gettinng id of the activity status in the group Creating & Extending: 13 years, 6 months ago
Always use BP-native functions when you can.
Use bp_activity_get_specific() (available in /bp-activity.php). It takes an activity ID as an argument.
So you can do this:
// get activity
$activity_get = bp_activity_get_specific( array( 'activity_ids' => YOURACTIVITYID ) );// single out the activity
$activity = $activity_get;// grab specific…[Read more]
-
r-a-y posted on the forum topic Activating existing user accounts in BP in the group How-To and Troubleshooting: 13 years, 6 months ago
Try this new plugin by BP’s very own Boone Gorges – “Unconfirmed”:
http://teleogistic.net/2011/05/new-wordpress-plugin-unconfirmed/(Edit) Are you talking about manually activating user accounts on your BP install? Or are you talking about members not showing up in the members directory?
-
r-a-y posted on the forum topic Change the title on members widget in the group How-To and Troubleshooting: 13 years, 6 months ago
I believe you’ll have to use a customized language file.
Read this article:
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/ -
r-a-y posted on the forum topic How would I do Video Transparency? in the group oEmbed for BuddyPress: 13 years, 6 months ago
I have some better code for wmode in my own development version. As BP v1.3 approaches, I’ll post a new test version for everyone to debug.
-
r-a-y posted on the forum topic Language Files… in the group How-To and Troubleshooting: 13 years, 6 months ago
Your language files are currently suffixed with “WyoDLC”. Try using “en_US” or whatever your WordPress locale is. If you want to keep your language files with the suffix “WyoDLC”, use this snippet in /wp-content/plugins/bp-custom.php: `define( ‘BPLANG’, ‘WyoDLC’ ); if ( file_exists( WP_LANG_DIR . ‘/buddypress-‘ . BPLANG . ‘.mo’ ) ) {…[Read more]
- Load More
@r-a-y
Active 4 months, 4 weeks ago