Search Results for 'buddypress'
-
Search Results
-
Topic: Button wrong alignment
HI , I have a problem with these buttons

they work fine if I change to the default wordpress themes, but using my premium theme they look like that, where should I look to modify the aligment or it has nothing to do with buddypress?Topic: Per-group Identity?
I’m building a site where a user’s identity in one group isn’t related to his/her site identity, and where the identity is different across groups.
So for example, the WordPress.org site provides single-signon between that site and this BuddyPress.org site. But while I’m Starbuck there, I might prefer to be “MrBuddy” here, or “TechDude” in some other developer site.
My application is for a single site but the concept is the same. A user has a single site account and wants to be in different groups where he is recognized by a different name, has different different profile fields, etc.
Given that scenario I’m also trying to figure out the best way to manage group invitations. Some people invited to a group will already be site members. Rather that requiring group admins to have the email address for all group members I’d prefer that they invite site members by their member name/ID, with an email going out to the user from the site using a stock template : “You’ve been invited to the ZSite group Blah, click here to accept…”.
Can anyone refer me to extensions/plugins for this? I’ve found some that do some of this, but not all, and nothing that’s been maintained for a while.
Thanks!
Hi: n00b with Buddypress, and not very experienced w/PHP hacks either.
I have a staging site where the user is prompted to choose a role (Musician or Venue) during registration. This goes well, but then I need that role to show up on the user’s new profile page. It doesn’t. Any ideas?
I’m going to include a couple of images so you can see what I’m talking about. Here’s the registration page as it appears to a brand new user (you can see this at above url as well):

You can see the “Musician or Venue? (Required)” drop-down field at the bottom-left of the above screengrab.
And here is a registered user’s profile page:

As you can see, there is no mention of “User Role” here, or either of the two values “Musician” or “Venue” associated with the profile. **I need to display the registered user’s role somewhere in this profile.**
Finally, I’m using WP 4.2.2, 2013 Theme (switched after taking screenshots, just to remove 1 variable from the equation), Buddypress 2.2.3.1, as well as WP Roles at Registration plugin.
I am trying to rearrange the buddypress profile menu items with the bp-custom.php file located in WP-Admin > WP-Content > plugins.
The following code I have is as follows:<?php // hacks and mods will go here function mb_profile_menu_tabs(){ global $bp; $bp->bp_nav['media']['position'] = 10; $bp->bp_nav['activity']['position'] = 15; $bp->bp_nav['forums']['position'] = 15; $bp->bp_nav['profile']['position'] = 25; $bp->bp_nav['messages']['position'] = 30; $bp->bp_nav['notifications']['position'] = 40; $bp->bp_nav['friends']['position'] = 50; $bp->bp_nav['groups']['position'] = 60; $bp->bp_nav['orders']['position'] = 70; $bp->bp_nav['profile']['name'] = 'Account'; $bp->bp_nav['forums']['name'] = 'Collections'; } add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201); ?>When I save the file and then refresh my profile page the items are not rearranged or renamed. Am I missing any steps or do i need to copy this document and paste it elsewhere inside other .php files?
Any suggestions will be helpful! (:Topic: Problem with CKEditor
I have the latest versions of WordPress, BuddyPress, and CKEditor.
Also a child theme for Responsive.
When both BuddyPress and CKEditor are active, the editor displays just a blank box for posts and pages. All other plugins are disabled.Topic: Buddypress not working
I recently installed buddypress on my local computer (Running with mamp). I enabled pretty permalinks and then after, it said Forbidden
You don’t have permission to access /wordpress/ on this server. I then deleted .htaccess and now buddypress pages say Not Found
The requested URL /wordpress/members/ was not found on this server. Any suggestions?Topic: Facebook Group Integration
I know this may be impossible by the changes in the Facebook API, but it’d be great if there was a native BuddyPress feature to support facebook groups. It would sync posts back and forth, automatically add users, and allow you to augment the limited facebook group experience. A BuddyPress installation could become a backup or more nuanced experience for a facebook group, allowing admins and users alternative ways of finding group content than scrolling down or using the facebook search bar.
Just an idea.
HI,
I am trying to fetch user avatar url from out side wordpress(buddypress)
from where can i get user avatar.
i need to create a custom function to get avatar.anyone faced same issue please help.Topic: Join button for non-members
Hi
I’m using wordpress version 4.2.2
Buddypress version 2.2.3.1
I am using a child theme of twentyfifteen.
I can’t send a link to my site as it’s still in development.I have a list of public groups on my site, and I would like to add a Join button so anyone can join.
Is this possible?At the moment I have to register, and then choose a group to join. Is this the only way of doing it?
thanks for any help!!
Ok so this comes from complete beginner when coding come in question.
Can I actually change like complete design/template of buddypress profile page look ? I dont mean on fields and tabs, I mean about making everything smaller ?
Also I would like to add comment count and history including follow button for profiles.
Any links to guides/example where I could learn more about that if its possible it would be appreciated.
When a new user registers it sets it up on the back end but just shows them a white screen. I have wp user front end installed but i am using buddypress for the registration page.
Hi there,
I need some general advice ( I am using current versions of wp and bp and from what I understand the issue is the same whatever your theme).
My question is how do you let your subdomains’ admins deal with their own users’ registration and keep them separate from the main website and network?
I am unable to locate a plugin for it…they’re either broken, not buddypress compatible, etc. Short of hiring a developer, has anyone found an (easy) workaround for this issue?
Thank you in advance,
BettyHi i want to know hot to disable buddypress register and login redirect now is
http://www.example.com/wp-login.php?action=register
i want to
http://www.example.com/registerbut this not work `if ( bp_core_is_multisite() )
remove_action( ‘wp’, ‘bp_core_wpsignup_redirect’ );
else
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );`And this not work
‘function bbg_bp_loggedin_register_page_redirect_to( $redirect_to ) {
if ( bp_is_component_front_page( ‘register’ ) )
$redirect_to = bp_get_root_domain() . ‘/home’;return $redirect_to;
}
add_filter( ‘bp_loggedin_register_page_redirect_to’, ‘bbg_bp_loggedin_register_page_redirect_to’ );’and this not work in my functions.php theme