Search Results for 'wordpress'
-
Search Results
-
Hey guys,
I am diving into creating a community for my workplace and buddypress rocks! I am running into an issue with avatars and it’d be great to get some guidance. Our wordpress site is installed on an IIS server and we use a custom plugin to link our Active Directory to the user table and provide Single SignOn upon accessing the site. Active Directory also handles all our staff photos, and this same custom plugin associates these photos as avatars and show up automatically when users comment, etc on the wordpress site. However, when I enable BuddyPress it seems that this association is lost and avatars revert back to the default wordpress anonymous avatar. When I deactivate BuddyPress, the association between our Active Directory photos and wordpress avatars is automatically restored. No other functionality appears to be compromised when enabling BuddyPress, just this piece of the integration baffles me.
I am running the latest version of buddypress and wordpress
Any thoughts are greatly appreciated!
Hi folks,
Running latest WordPress and Buddypress.
How can I add BP profile fields to the Registration form. I dont want to use a new custom field in Profile. I want to include/use those that are aleady there in the BP profile.
I dont need much, just Name, Website etc. but I would really like them required. Is there nowhere to easily edit the reg form?
ThanksHello,
I found I needed to get the permalink and title for a component so needed to determine the page ID associated with a component.
Currently there’s no method so I’ve opened a trac ticket;
https://buddypress.trac.wordpress.org/ticket/7025#ticketAnd you can see how to do this below;
$component = bp_current_component(); $bp_pages = get_option( 'bp-pages' ); $page_id = $bp_pages[$component];*We simply take the component slug and use it to look up the page ID from the bp-pages option.
Cheers
Hello,
I encountered an issue with Buddypress group slugs in foreign language.
When a user registers a BP group with a non-English name then the slug for this new group is created using %-encoding and lower-case characters like
mysite.com/groups/%d1%80%d0%be%d1%81%d1%81%d0%b8%d1%8f/The issue happens when some user agents and Google in particular are trying to access this URL.
When I try to fetch this URL as Googlebot from my Google Search Console, I see that Google is trying to access this same URL using upper-case characters like this:
mysite.com/groups/%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8FThe response Google is getting is:
HTTP/1.1 301 Moved Permanently Location: mysite.com/groups/%d1%80%d0%be%d1%81%d1%81%d0%b8%d1%8f/But unfortunately Google is not following this redirect.
Apparently Google thinks that the URL is redirecting to itself and stops indexing it.1. Does anyone know a solution for this issue?
2. Is’n it making sence to make Buddypress treat such URLs as equal and respond with a proper 200 response instead of 301-redirecting?Buddypress behaviour in this case is quite different to how WordPress is handling this same problem. In the case of Worpress requesting a %-encoded URL always produce a 200-response regardless of the case.
Thanks a million in advance!
Anton.Hi!
We’ve found a bug and we’d like to notify you about it.
Slider Revolution 5.2.5 + BuddyPress 2.5.2 + bbPress 2.5.8 shows next notices:Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in wp-includes\functions.php on line 3901
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in wp-includes\functions.php on line 3901
Best regards,
MaksymHey Buddypress users. I have current version of WordPress and Buddypress (4/22/2016).
I am trying to completely remove the need for Buddypress registration. Reason being, I have a theme that has its own registration process. With Buddypress registration, that makes it two completely different registration processes.
I want to remove the need to have a Buddypress registration process completely. I have searched throughout your entire forum and I have tried everything. Nothing works. I continue to get the message “Missing buddpress register page. Repair.”
Hi all,
This “trick” is intended to allow certain WP user roles (like Admin or Subscriber) to create groups while preventing the rest, and it is intended for installations based in WP4.5 and BP2.5.2. I cannot assure it works for other versions.
NOTE: As a BP plugin file will be modified, the trick will not survive BP updates.
1) Make sure that users cannot create groups by default (Settings -> BuddyPress -> Options).
2) Choose the users that you want to enable (to create groups). Get the list of WP capabilities for each of them from here (or use a role/capability editing plugin):
https://codex.wordpress.org/Roles_and_Capabilities
Choose one capability which is only shared by those users that will have the ability to create groups.
For example, if you want WP roles Contributor, Author, Editor and Admin to have the ability to create groups but you want to exclude Subscribers, then choose “delete_posts” or “edit_posts” as your differentiating capability (they all -but Subscriber- can “delete_posts”).
Combinations of custom Roles and Capabilities also work. In my case, I am using s2member Roles and Capabilities (i.e. “access_s2member_level2”).
The choosen capability will be called my_choosen_capability beyond this point.
3) Then, edit /path/to/your/installation/wp-content/plugins/buddypress/bp-groups/bp-groups-template.php. In line 4312 you will find the following function:
function bp_user_can_create_groups()
After the if structure that enables Admins to create groups regardless the settings, add this:
if(current_user_can('my_choosen_capability')){
return true;
}
In my case as my_choosen_capability = access_s2member_level2, the code looks like this:
if(current_user_can('access_s2member_level2')){
return true;
}
Then save and enjoy till next update.
4) When the enabled users visit the group page, two buttons will be printed:
-Join group
-Create groupThis is it. Have fun!
A while ago I created a field in my registration page called “country” so user in my buddy press install would write their country. That was really badly planned as people are writing their country name in different forms. I want now to replace that field with a dropdown menu and my question is: if a remove the existing field from the registration page, would I delete also all the information on the database? Many thanks.
I am using the latest WordPress and buddypress versions.
Hello BP community,
We are experiencing an issue with the email notifications buddypress is sending to our forum members. This is the link I mean that was sent by bp:
The problem is, the link is not working. When clicked it only redirects to the main website. I also tried to click the link when logged-in but still the link doesn’t work and still redirects to the main website.
This happened when we updated to BP 2.5.2. We are running WordPress version 4.5
Mark
Hi
How can i integrate buddypress in to my own theme.
i cant find tutorials or up-to-date documentation on this.
could you help me with this?i’m using the latest buddypress version 2.5.2 and wordpress version 4.5
Hi,
I’m trying to figure out how I can create a translation of the BuddyPress profile page. Is there an easy way to do this? I’m not a programmer, so please go easy on me. 🙂
Thank you!
—
WordPress 4.5
BuddyPress 2.5.2
bbPress 2.5.8
Polylang 1.8.5Hello, sorry for th dumb question but how would I go about echoing the cuurent loged in users cover image isnide the side bar?
I have found this function but I have no idea how to use it
bp_is_user_change_cover_image
If I use this code it just echoes out the number 1
` <?php
echo bp_displayed_user_use_cover_image_header()
?>`
any help would be super thank!
Topic: Reviving BuddyPress Twitter
Hi there
I’ve inherited a site that uses the BuddyPress Twitter plugin.
However, this plugin hasn’t been updated in nearly 3-4 years, and WP and BP have moved on since then.
If I create a fork to get development moving again, what’s the process for getting it listed on the plugin directory and adding a notice to the (original) that development’s starting on a separate fork?
TIA
David
