-
r-a-y posted a new activity comment 13 years, 10 months ago
Aware of the spammer! The BP team are looking into it.
-
r-a-y posted on the forum topic FrontPage Group in the group How-To and Troubleshooting: 13 years, 10 months ago
You should be able to do something similar by modifying the template. Check out the link I posted above.
If you need your group admins to set the screenshots, etc, you’ll also need to create a group plugin for this:
https://codex.buddypress.org/developer-docs/group-extension-api/ -
r-a-y posted on the forum topic Widget Logic and Conditional Tags in Citizen Kane Theme? in the group Creating & Extending: 13 years, 10 months ago
This might not apply to you, but If you’re using the BP activity stream as the front page, you’d have to use a BuddyPress-specific function:
bp_is_front_page()
-
r-a-y posted on the forum topic how to change profile -> settings page in the group How-To and Troubleshooting: 13 years, 10 months ago
Yeah, I know it’s not really intuitive in BP 1.2 as the settings pages piggyback off the plugins template.
BP v1.3 will fix this with dedicated template files specifically for the settings pages:
https://trac.buddypress.org/browser/trunk/bp-themes/bp-default/members/single/settings -
r-a-y posted on the forum topic Just uploaded Buddy Press and have "fatal error message" in the group Installing BuddyPress: 13 years, 10 months ago
If your site is hosted with GoDaddy, try searching GoDaddy’s site for help:
http://help.godaddy.com/You could even call them!
—
A quick search on Google returned this:
http://help.godaddy.com/article/372 -
r-a-y posted on the forum topic I Wanna Poke Somebody! in the group Creating & Extending: 13 years, 10 months ago
nahummadrid has the right idea.
The skeleton component is a plugin example to send a user a “high-five” to another user:
https://wordpress.org/extend/plugins/buddypress-skeleton-component/It might not work, but give it a shot.
-
r-a-y posted on the forum topic Nickname instead of Username in the group BuddyPress Usernames Only: 13 years, 10 months ago
You’d have to change each instance of the plugin to use the user_nicename (which I’m guessing is how you’re setting the nickname in WP).
eg.
$bp->loggedin_user->userdata->user_login
becomes:
$bp->loggedin_user->userdata->user_nicename
—
Hopefully that gives you some pointers.
-
r-a-y posted on the forum topic Getting oembed to work with TINYMCE in the group oEmbed for BuddyPress: 13 years, 10 months ago
Don’t have time to look into this at the moment.
Could probably filter the forum code to add back the break lines that TinyMCE removes before oEmbed runs.
-
r-a-y posted on the forum topic iframe embed code youtube / vimeo in the group oEmbed for BuddyPress: 13 years, 10 months ago
The plugin relies on the oEmbed provider; I don’t do any manipulation to the embed code YouTube returns.
eg. http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v=-UUx10KOWIE&format=xml—
If you look at the source for the iframe page; it still relies on flash at the moment anyway.
-
r-a-y posted an update 13 years, 10 months ago
@mercime Okay! Deleted those multiple forum posts!
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/assign-forum-to-post-instead-of-group-or-create-checkbox-menu-for-comments/ -
r-a-y posted on the forum topic Just uploaded Buddy Press and have "fatal error message" in the group Installing BuddyPress: 13 years, 10 months ago
If that is your blog, login to your hosting provider’s administration panel.
There should be a link somewhere that tells you the login info for your FTP.
-
r-a-y posted on the forum topic FrontPage Group in the group How-To and Troubleshooting: 13 years, 10 months ago
Try this:
http://bp-tricks.com/featured/creating-a-custom-front-page-for-your-buddypress-groups/Requires BP template modification.
-
r-a-y posted on the forum topic BuddyPress broke WordPress in the group Installing BuddyPress: 13 years, 10 months ago
Have you tried this?
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP -
r-a-y posted on the forum topic Can use WordPress build a micro-blog system? in the group Creating & Extending: 13 years, 10 months ago
Testbp.org is probably going through some maintenance right now.
Check back in a few hours or so.
-
r-a-y posted on the forum topic Hide General Settings in the group How-To and Troubleshooting: 13 years, 10 months ago
Add the following to your theme’s functions.php : `function ray_bp_remove_settings() { global $bp; // removing the existing settings tab bp_core_remove_nav_item( $bp->settings->slug ); } add_action( ‘init’, ‘ray_bp_remove_settings’, 0 ); function ray_bp_readd_settings() { global $bp; // add a new settings tab to use notifications as default tab…[Read more]
-
r-a-y posted on the forum topic Let users add their own background? in the group How-To and Troubleshooting: 13 years, 10 months ago
Stay tuned. That’s all I’m going to say for now 😉
-
r-a-y posted on the forum topic Issue with core name field in registration in the group How-To and Troubleshooting: 13 years, 10 months ago
Upcoming BP version 1.3 fixes this.
In the meantime, read this:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/add-field-description-to-fullname-core/#post-57735 -
r-a-y posted on the forum topic Can use WordPress build a micro-blog system? in the group Creating & Extending: 13 years, 10 months ago
Yup, andrea_r is spot-on!
Go to testbp.org to see how a default BuddyPress install looks like.
-
r-a-y posted on the forum topic wHere to upload the MO file? in the group Miscellaneous: 13 years, 10 months ago
Don’t get me wrong, hnla!
Really appreciate the leg work! -
r-a-y posted on the forum topic How to make "blog creation" mandatory / obligatory at register page? in the group How-To and Troubleshooting: 13 years, 10 months ago
You can modify the registration template to remove the blog creation checkbox.
If you’re using the bp-default theme, create a child theme and then copy over /bp-themes/bp-default/registration/register.php to your theme.
Change this:
<input type="checkbox" name="signup_with_blog" id="signup_with_blog"…
[Read more] - Load More
@r-a-y
Active 5 months ago
@r-a-y many thanks 🙂