Search Results for 'buddypress'
-
AuthorSearch Results
-
May 3, 2010 at 11:59 am #76403
In reply to: Only admin can see entire activity stream?
Paul Wong-Gibbs
KeymasterIt’s a plugin conflict, there was this thread from the other day:
May 3, 2010 at 11:57 am #76402In reply to: Only admin can see entire activity stream?
Jeff Sayre
ParticipantOkay, let’s backtrack. Please answer these questions:
May 3, 2010 at 11:53 am #76401In reply to: What you don't like about BuddyPress
Paul Wong-Gibbs
KeymasterAs Ray’s said, please use the thread he linked to or make a new one. If us moderators had our moderator powers back yet (which we don’t), this’d be closed.
May 3, 2010 at 11:47 am #76400Jeff Sayre
ParticipantIt looks like you also have the 3rd-party plugin bp-registration-options installed and activated. If you can log the dashboard as Site Admin, then go to the Plugins menu and deactivate the plugin bp-registration-options. If you cannot login to your site, then manually remove the bp-registration-options plugin from the /plugins/ directory.
Either way, that should bring your site back up. You will then need to contact the plugin author and tell him/her about the error.
NOTE: This thread should be moved to the support forum Third Party Components & Plugins
May 3, 2010 at 11:44 am #76399Xevo
ParticipantRename all plugins in your plugin folder through ftp, access your wp-admin again and only activate buddypress, this way you can find out wether the problem lies within buddypress or some other plugin.
May 3, 2010 at 11:22 am #76396In reply to: What you don't like about BuddyPress
Xevo
ParticipantMay 3, 2010 at 11:21 am #76395In reply to: What you don't like about BuddyPress
Hugo Ashmore
ParticipantRather than drag up a rather old thread , could you perhaps marshal your thoughts about the UI and general user experience in this thread:
https://buddypress.org/community/groups/miscellaneous/forum/topic/the-buddypress-ui-design-and-conceptual-approach-to-social-networking/It’s a vague attempt at having a thread running to mirror the API developers thread but focused more on the presentaion tier or Frontend.
May 3, 2010 at 10:52 am #76394In reply to: What you don't like about BuddyPress
bobs12
ParticipantThe 1.2 release of BP has gone all wrong
My users aren’t Twitter users or technophiles of any description – BP is now too complicated for me to get my head round, and I’m supposed to be the one running the site based on it, so I can hardly expect my users to be able to understand.The profile wire – why, why did you take it away? 1.1.x was fantastic, now I am beating my head against the keyboard trying to work out how to bring it back after I updated to 1.2 just so I could install a gallery plugin.
The wire (once I’d renamed it to ‘wall’ so my users would understand what it was) was about the only thing that my members really used for public exchange. I installed BP to replace an outdated site platform that I’d built from scratch years ago, thinking that it would take the hard work out of maintaining the site… oops, I was wrong
May 3, 2010 at 9:08 am #76391In reply to: BuddyPress-Links 0.4.x Releases and Support
Sven Lehnert
ParticipantThe plugin is not 100% update friendly, if I disable buddypress the site crashes.
Fatal error: Call to undefined function bp_core_load_template() in /data/wwwcust/sv3-132/html/wp-content/plugins/buddypress-links/bp-links-core.php on line 277I fixed this bug for my version with if ( defined( ‘BP_VERSION’ ) )
`
/**
* Use this only inside of screen functions, etc
*
* @param string $template
*/
function bp_links_load_template( $template ) {
bp_links_setup_theme();
if ( defined( ‘BP_VERSION’ ) ){
bp_core_load_template( BP_LINKS_THEME . ‘/’ . $template );
}
}
`and wp single:
Fatal error: Call to undefined function is_site_admin() in /data/wwwcust/sv3-155/html/wp-content/plugins/buddypress-links/bp-links-admin.php on line 20I changed:
`
if ( !is_site_admin() )
return false;
`
to
`
if ( !current_user_can(‘level_10’) ){
return false;
}`
May 3, 2010 at 8:28 am #76389In reply to: bbPress issues
Dries Cronje
ParticipantWow… That’s not good. I really would like the forum capabilities to work, since that would add to the whole BuddyPress experience for our clients…
So, hopefully someone has some advice here…?
Please guys.
Dries
May 3, 2010 at 6:41 am #76387In reply to: Social Bookmarking Functionality Question?
May 3, 2010 at 6:40 am #76386In reply to: Allowing others to post?
r-a-y
KeymasterThis is a known issue.
https://trac.buddypress.org/ticket/2055Watch this ticket for new developments.
May 3, 2010 at 6:11 am #76385Hector
ParticipantMay 3, 2010 at 2:30 am #76380In reply to: buddypress.org: Location in the profiles
Scotm
Participant@apeatling This worked fine for me. Thanks.
May 3, 2010 at 1:08 am #76378Brajesh Singh
Participant@stwc

@mikepratt
In that case, you will have to cap on “bp_core_get_root_domain”, as this is what used by the userlink.`
add_filter(“bp_core_get_root_domain”,”my_site_url”);//just removing the effect of BP_ENABLE_MULTIBLOG on the urls
`
This will do things like change all the references of sub blog used by buddypress to point to main site not the sub blog. I hope it helps
May 3, 2010 at 12:41 am #76376In reply to: buddypress.org: Location in the profiles
stwc
ParticipantI’ve never been able to get jjj’s plugin to work.
May 3, 2010 at 12:23 am #76375In reply to: group types
stwc
Participant@firetag — as I talked about here, I’m really keen to have something to start from to get this going. Would much appreciate anything you can share to help!
May 3, 2010 at 12:17 am #76373In reply to: Buddypress.org’s New Plugin Review Functionality
stwc
ParticipantFor front-end guys like me, it’s easier to see basic working examples than try to look over the code of complex plugins to pick out the relevant code.
@agrundner Definitely. Like many hobbyist coders, I can take sample code or something and modify it to my needs most of the time, but without the cloud being seeded, so to speak, it’s hard going.
The other thing I’d add to your list is how to split Groups into different kinds, with different functionality hooked to them. On this site, now, User Created Groups can be arbitratrily created, Plugin Groups can be created around an individual plugin, and Support Groups are only creatable by an admin.
That’s precisely the kind of setup I’d be interested in getting running on the site I’m currently working (where ‘plugin’ is another arbitrary class of ‘object’), along with the reviewing functionality for those ‘objects’ and standard forums/activity/album+ images/links etc attached.
May 2, 2010 at 11:25 pm #76367In reply to: BuddyPress / Thesis Custom Template Integration
techguy
ParticipantOf course, now the problem is figuring out how the license will let you distribute the changes you made. Unless you did a nice job separating the BP mods for Thesis. No doubt Thesis would be a nice theme to offer for BP.
May 2, 2010 at 10:15 pm #76371In reply to: Buddypress Pages sub nav
roadblock
ParticipantWell after spending much of the day on this I got it.. I Have never used templates before in WordPress. Turns out I just had to make a template with the code for the page I wanted in it. Pretty easy once I figured out what I had to do…
May 2, 2010 at 8:49 pm #76366In reply to: Problems creating an Account
Bond James
ParticipantTks for your help! I cannot disable BuddyPress since I didn´t install WP and then BP over it. I installed BP from my hosting provider (so WP was “transparently” installed). However I created a new user via wp-admin but no email its beeing sent…
May 2, 2010 at 8:30 pm #76364In reply to: Removing the gap between the header, and content.
Boone Gorges
Keymaster@bigleeroy FYI – Changes that you make to bp-default will be overwritten when you upgrade BuddyPress. Build a child theme to make sure that you don’t lose your customizations: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
May 2, 2010 at 8:16 pm #76362In reply to: Friends and Groups for BuddyPress 1.3
Richard Venable
ParticipantI guess this topic dropped off the radar, but I hope it comes back up again, because I personally think this is a great direction to go, and I see many advantages to having the friends feature built on top of the groups feature.
I haven’t had time to read most of the previous 70 posts on this topic. One thing I do want to respond to was what MrMaz said early on about friends being a one to one relationship and groups being a one to many. I think friendships are one to one, but in practice they are almost always queried as one to many. You don’t usually query to get one friend, you query to get all of a user’s friends at once.
May 2, 2010 at 6:54 pm #76357In reply to: Jabber Chat
Erlend
ParticipantThe list of browser-based Jabber clients on xmpp.org seems to have been updated:
http://xmpp.org/software/clients.shtmlI found a handful of great-looking projects here now I never knew existed! If someone starts a collaboration with one of these projects and creates a BuddyPress Jabber chat, I for one would be all over it.
May 2, 2010 at 6:49 pm #76356In reply to: I am unable to create any Groups in Buddypress
Matthew
ParticipantCan anyone out there still help me with this problem?
( Cue sound of crickets in the background…..
)
I really hope that this issue hasn’t stumped even the experts here……
I tried everything that I could think of, I even created *another* Buddypress installation, and ended up with the exact same result of not being able to create any Groups.
Simply put, If I am not able to create Groups, and even Forums, I just won’t be able to use Buddypress.
I’ll have no alternative, but to use something else ( ie Drupal, etc. ).
I really hope that I won’t have to do that, so I’m still open to any and all suggestions.
I’m sure that this exact problem has been encountered with at least one person out there in internetland, so this resolution would help with the greater Buddypress Troubleshooting knowledge base.
Thanks in advance! -
AuthorSearch Results