-
r-a-y posted on the forum topic wHere to upload the MO file? in the group Miscellaneous: 13 years, 10 months ago
I am the “culprit”; I edited the codex page as it was a little too confusing in my eyes. I also wanted to remove the step to create a bp-custom.php file, as it is unnecessary in BP 1.2.7 and up. I’ve just taken some time to update the codex page once more: https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/ And am […]
-
r-a-y posted on the forum topic Duplicate Content: Slash and No Slash at the End of URL in the group Miscellaneous: 13 years, 10 months ago
Yeah, it is a bit of a hack, but I believe it will not break anything; if anyone feels adventurous, try it out.
-
r-a-y posted on the forum topic Duplicate Content: Slash and No Slash at the End of URL in the group Miscellaneous: 13 years, 10 months ago
Yeah, this issue has already been reported on Trac:
https://trac.buddypress.org/ticket/2681 -
r-a-y posted on the forum topic Bp prevents installing *big-size* plugins? in the group How-To and Troubleshooting: 13 years, 10 months ago
Could be a memory problem.
Have you tried manually uploading the plugins to the server via FTP and then activating them in the admin area?
-
r-a-y posted on the forum topic Plugin manager for WordPress MU in the group How-To and Troubleshooting: 13 years, 10 months ago
Apparently, the link no longer exists on WPMUDev; the developer of the plugin says the next release will be available on wordpress.org/extend/plugins/.
Mason has posted a modified version here:
http://premium.wpmudev.org/forums/topic/plugin-commander-or-plugin-manager#post-60823 -
r-a-y posted on the forum topic How can I add embed.ly support in the group How-To and Troubleshooting: 13 years, 10 months ago
@risi @modemlooper – Just added a sticky for this over here:
https://buddypress.org/community/groups/oembed-for-buddypress/forum/topic/embed-ly-plugin-support/ -
r-a-y posted on the forum topic redirect to /register in the group How-To and Troubleshooting: 13 years, 10 months ago
Like I said, if you’re using any caching or redirecting plugins please disable them and test.
-
r-a-y posted on the forum topic How to display the poster’s user role in forums for that specific group in the group How-To and Troubleshooting: 13 years, 10 months ago
Sorry about that! I thought it would work. Looks like BP is missing some template tags for this. This will work. Add the following to your theme’s functions.php :
function bp_topic_poster_is_admin() { global $topic_template; return BP_Groups_Member::check_is_admin( $topic_template->post->poster_id, bp_get_the_topic_object_id() ); } function…
[Read more] -
r-a-y posted on the forum topic How to display the poster’s user role in forums for that specific group in the group How-To and Troubleshooting: 13 years, 10 months ago
Try it!
Be sure to wrap it around php tags though.
-
r-a-y posted on the forum topic redirect to /register in the group How-To and Troubleshooting: 13 years, 10 months ago
I don’t understand your issue; I navigate straight to this URL:
http://www.eziny.net/I am able to access your posts without being redirected to the register page.
-
r-a-y posted on the forum topic Change Avatar in BuddyPress.org in the group Miscellaneous: 13 years, 10 months ago
It’s a server thing with the way the *press.org sites are hosted; don’t ask me the specifics as I have no idea!
If you really need to show an avatar, then follow what modemlooper said.
-
r-a-y posted on the forum topic displays link, not embedded video in the group oEmbed for BuddyPress: 13 years, 10 months ago
Nope, you shouldn’t need to add anything to the end of a Vimeo link.
Do not use the embed code but just the URL for the video.
eg.
http://vimeo.com/18661699
-
r-a-y posted on the forum topic How to display the poster’s user role in forums for that specific group in the group How-To and Troubleshooting: 13 years, 10 months ago
Yeah, the second code; I was just trying to explain where you can find useful functions for groups 😉
-
r-a-y posted on the forum topic bbPress plugin – Groups? in the group How-To and Troubleshooting: 13 years, 10 months ago
BuddyPress’ forums are group-specific like the forums on Facebook’s group pages.
If you’re looking for a traditional forum, then stick with phpBB.
Also, stay tuned to the new bbPress WordPress plugin:
https://trac.bbpress.org/timelineThere will probably be an alpha release for that in the next month or so.
-
r-a-y posted on the forum topic How to display the poster’s user role in forums for that specific group in the group How-To and Troubleshooting: 13 years, 10 months ago
Check out /buddypress/bp-groups/bp-groups-templatetags.php.
In particular, here are the conditional functions you’re looking for:
bp_group_is_admin(); // will return true if the user is a group admin
bp_group_is_mod(); // will return true if the user is a group mod
Use in a conditional statement and you’re good to go!
eg.
if (…
[Read more] -
r-a-y posted on the forum topic How to get topic starter's username? in the group How-To and Troubleshooting: 13 years, 10 months ago
It’s better to be clear when posting!
You can use this snippet in your theme’s functions.php:
function ray_bp_get_the_topic_last_poster_name( $name ) {
global $forum_template;return str_replace($forum_template->topic->topic_last_poster_displayname, $forum_template->topic->topic_last_poster_login, $name);
}
add_filter(…[Read more] -
r-a-y posted on the forum topic redirect to /register in the group How-To and Troubleshooting: 13 years, 10 months ago
If your site has open registration like you say, then users shouldn’t be redirected to the register page when they’re trying to read a post.
Do you have any redirection or private BuddyPress plugins installed?
-
r-a-y posted on the forum topic How to get topic starter's username? in the group How-To and Troubleshooting: 13 years, 10 months ago
@imjscn – Works for me.
Like I said, the code only works during the forum topic loop.
The corresponding template is:
/groups/single/forum/topic.phpLook for this line:
Then, add the following and see what pops up on the screen:
-
r-a-y posted on the forum topic Creating custom pages in the group Creating & Extending: 13 years, 10 months ago
Check out the BP Skeleton Component: https://wordpress.org/extend/plugins/buddypress-skeleton-component/ It teaches you how to create a whole plugin for BuddyPress; you won’t need to use all the code in the skeleton component, but it’ll help you structure your code for BP. The functions you want to look at in particular are:
bp_example_setup_globals…
[Read more] -
r-a-y posted on the forum topic notify site admin when user updates profile in the group How-To and Troubleshooting: 13 years, 10 months ago
There are two hooks BuddyPress uses when editing a profile that you can hook into:
do_action( 'xprofile_profile_field_data_updated', $field_id, $_POST );
do_action( 'xprofile_updated_profile', $bp->displayed_user->id, $posted_field_ids, $errors );These actions are in the xprofile_screen_edit_profile() function in bp-xprofile.php.
If you’re…[Read more]
- Load More
@r-a-y
Active 5 months ago