Search Results for 'buddypress'
-
AuthorSearch Results
-
February 12, 2010 at 3:40 pm #63168
In reply to: Convert a WordPress Theme to a BuddyPress Theme
fastfido
Participant@Scotum
I fully agree with you on all points. I would love to make Buddypress part of my existing website.
I would expect someone who really knows how this thing works, will create a set of theme files to drop into an existing website, in order to allow the buddypress plugin to work properly. It just might be we are here a month to early.
Today another release candidate came out. They are hoping to have the final version early next week; so it is written. I have a feeling the whole team is focused on getting 1.2 finalized and will deal with theming issues soon after.
February 12, 2010 at 2:04 pm #63163In reply to: Help with Site Structure – Interesting Quest !
Andrea Rennick
Participant“and the themes are likely to have uncompatibilty issues. “
I can count on one hand the number of WordPress themes that don’t work right in MU. Most of them are fine.
BuddyPress themes are different.
February 12, 2010 at 2:01 pm #63162In reply to: mobile theme for buddypress?
peterverkooijen
ParticipantWhat is the latest on this? Can anyone recommend a plugin/theme that works for BP or an approach how to make it work?
February 12, 2010 at 1:59 pm #63161In reply to: Buddypress iPhone Theme?
peterverkooijen
ParticipantWhat is the latest on this? Carrington looks good. Is it still the best option?
Is there any way to test it online? I’ve installed the Carrington theme, but it’s not detected in online emulators I guess. I don’t have a smartphone yet… (broke…)
February 12, 2010 at 1:55 pm #63158In reply to: Convert a WordPress Theme to a BuddyPress Theme
Scotm
ParticipantI’m aware of both threads but as you know they’re pretty old and do not address 1.2.
Am I the only one who finds it strange the idea of using existing WP themes with BP should be more of a priority (at least a detailed tutorial or blog post explaining How), versus creating child themes from the parent?
I see the benefits for the latter, obviously, but I can envision many WordPress users who wish to implement BuddyPress without switching away from their existing theme, etc. Is this not creating a significant barrier to entry?
February 12, 2010 at 1:47 pm #63157Dwenaus
ParticipantI’ve decided it’s easy to do. You just create a public group and add a little check box which ‘make this an announcement only group’ then add that data to group meta. Then for groups where that is checked, remove the activity stream input box and the forum post box. now it is just a matter of finding the proper do_action hooks to make it happen. Or more klunkly and less secure – just hide those things with CSS. I’ll have a simple plugin done by the end of the (long) day hopefully.
The buddypress code, while complex, is very well documented and written so it is not so hard to figure out. Kudos to the excellent developers!I’ll check out the group blog plugin again. i was going to use it anyway for certain groups, thanks.
February 12, 2010 at 8:50 am #63148danbpfr
ParticipantTake a look into the bp-group-blog plugin;
it allows user rights independantly of wp
https://wordpress.org/extend/plugins/search.php?q=buddypress+groupblog
February 12, 2010 at 5:10 am #63142Diesel Laws
ParticipantThe fatal error you are receiving is probably from not disabling buddypress linked plugins and THEN the actual Buddypress plugin itself BEFORE upgrading (Read more here – https://codex.buddypress.org/getting-started/upgrading-from-10x). I have crashed my site in the past from doing this. My theme itself really only has minor code changes and it’s not really possible to crash a whole site as it takes most of the code from the default theme.
The Unplugged theme also works ONLY with Buddypress 1.2rc+ and WordPress 2.91+. Installing Buddypress on a wordpress website in general may be a steep learning curve at the start but please read all the instructions on that link to guide you through.
February 12, 2010 at 4:24 am #63141In reply to: Convert a WordPress Theme to a BuddyPress Theme
fastfido
ParticipantThe conversation has a little traction over here
https://buddypress.org/forums/topic/new-theme-framework-and-exisiting-wp-themes
you will want to read over this as well.
https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/
February 12, 2010 at 4:12 am #63140In reply to: Leave Group link generates Internal Server Error
bruzed
MemberHi, were you able to solve this issue? I have a similar issue and i can’t find any leads.
– WPMU 2.8.6
– Buddypress 1.1.3
– WPMU in a subdirectory – http://www.domain.com/~name/directory/
– Many other plugins installed. I turned them all off with no success.
– Using buddymatic.
I get an internal server error (500) when I click on Groups > Join Group or Leave Group buttons. The same issue occurs with the letter and pagination links in the member directory.
It seems there’s an issue with the path it’s trying to post to:
POST http://www.domain.com/~name/directory/~name/directory/wp-load.php
I tried looking into the buddypress ajax.php and ajax.js but I’m drawing a blank.
Any help will be appreciated!
Thanks!
February 12, 2010 at 2:15 am #63139snark
ParticipantI found this code that can be wrapped around anything to hide it from everyone but administrators or ediors:
<?php if ( current_user_can( ‘delete_others_posts’ ) ) { //only admins and editors can see this ?>
(Items to be hidden here)
<?php } ?>
To make it work specifically for hiding that “Create a Group” button, I made a new version of the default template’s groups –> index.php file in my child theme, replacing this:
<h3><?php _e( ‘Groups Directory’, ‘buddypress’ ) ?><?php if ( is_user_logged_in() ) : ?> Â “><?php _e( ‘Create a Group’, ‘buddypress’ ) ?><?php endif; ?></h3>
With this:
<h3><?php _e( ‘Groups Directory’, ‘buddypress’ ) ?><?php if ( current_user_can( ‘delete_others_posts’ ) ) : //only admins and editors can see this ?> Â “><?php _e( ‘Create a Group’, ‘buddypress’ ) ?><?php endif; ?></h3>
It worked like a charm! Now only Admins and Editors can create groups on my site.
February 11, 2010 at 10:47 pm #63131snark
ParticipantWhere can you assign these Roles to Groups? Sorry if this is somehow obvious, but I can’t find any documentation on User Roles on the Buddypress site or anywhere else. And I have these fundamental questions:
1. Is there a way to assign user roles to Groups/Forums?
2. Is the creator of a group the “admin” for that group? I assume so, but then, who is the Moderator, and how does a Group Admin assign a Moderator to their group?
3. How do I give any user that has the role “Moderator” the ability to edit/delete any Group or Forum topics or posts created by any user below the Moderator level (such as Subscribers)?
4. Can I turn off the “Create a Group” function for anybody but Admins and Moderators?
What I’d like to do is have it so only Moderators and above can create groups, but Moderators and above can also edit and delete groups, forum topics, group/forum posts, etc. Is this possible?
February 11, 2010 at 10:35 pm #63129In reply to: Group/Profile Layout
bobs12
ParticipantGreetings folks! Sorry to drag up an old topic. Please don’t shoot me. A few things for my first post:
1. Buddypress ROCKS. I wasted loads of time messing around with Elgg (fell for the hype). Buddypress is a million times better, straight out of the zip file.
2. I agree that the layout can be improved, but if you don’t customise your OpenSource site, it will look like everyone else’s, right?
3. Let me know if I am doing this right – I decided to change the layout of the user profile page. I went into wp-content/themes/bp-sn-parent/profile/index.php and just shifted relevant chunks of code around. Hardly difficult even for an amateur, and I’m pleased with the results. Is this the right way to go or are you supposed to do it some other way? Seems to me the final layout is hardcoded in this file, and this must be the place to mess around with the code.
4. If the above is right (remember I went through Elgg paaain, nothing there is as it seems) then any educated monkey can make his own theme or at least mangle the default into something he likes
I would even have a go at it myself… who knows, one day I may become a household name…5. Plugins… please, please, write plugins, fix the broken ones, make some cool ones like ‘how you’re connected’ and all that nonsense. Gallery. Ajax for posting to walls. Can’t we call it a wall and not a wire, ’cause my users are not alternative social networking freaks and don’t have a clue why it’s called wire. Buddypress is the future of opensource social networks, Elgg is for losers
Half the Elgg ‘plugins’ crash your site on activation, one made my PC have a nervous breakdown (running locally) and it’s slow and stupidly convoluted. If I could get my head round the way they work I’d write my own… but I can’t yet
February 11, 2010 at 10:22 pm #63126abcde666
ParticipantThanks a lot Andrea !
February 11, 2010 at 9:27 pm #63120Dwenaus
ParticipantOK, I’ve worked out some of the issues, and have something to share:
the eventual url will be here: https://wordpress.org/extend/plugins/buddypress-group-tags/
but for now it is : http://bluemandala.com/bp-group-tags.zip
any and all feedback is appreciated.
Plugin Description:
This plugin will allow you assign tags to groups. You can then show a clickable tag cloud above the group listings or use the Group Tags widget.
Known Issues:
This plugin does not integrate with the ajax group Search, Order By or My Groups functionality.
Everything works fine, however the url from the group tag remains in the browser.
I have no idea how this works with paginated groups.
TODO: look into making this work with ajax calls to fix url display
ensure the do_action hook is added to default theme *request has been made*
show common tags in the tag adding interface
create links for tags when displayed under group description
IMPORTANT INSTALLATION INSTRUCTIONS
For this plugin to work, you need to edit /bp-themes/bp-default/groups/groups-loop.php in the buddypress folder
on the 6th line, right below this code:
<?php if ( bp_has_groups( bp_dtheme_ajax_querystring( ‘groups’ ) ) ) : ?>
ADD this line:
<?php do_action( ‘bp_after_groups_query’ ) ?>
If it is already there, then ignore this note.
Future versions of the buddypress default theme hopefully will include this line.
February 11, 2010 at 7:11 pm #63115Andrea Rennick
ParticipantI;d prefer to answer these question by email to not clutter up the forums, cuz it’s a paid thing.
(mods, feel free to make your call)But in short:
– it works in either kind of install
– it also works with multiple TLDs. I use it to run atypicalife.net and my family’s blogs on the same exact WPMU installation that runs wpmututorials.
– it works fine with 3.0, we’ve been using it on trunk, but it meeds renaming.

– remote login means saving the cookies from one domain to the next. your one user login & pass works for all if you’re assigned to those blogs.
February 11, 2010 at 6:02 pm #63111In reply to: links in activity = follow
r-a-y
KeymasterThis is fixed in trunk:
February 11, 2010 at 4:50 pm #63109In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
Participant@David Angel
There are a couple of bugs with how links hooks into the activity stream, and the comment count, etc. I have them fixed in my local copy, and when BP 1.2-RC3 comes out I am going to release another beta.
If you still think something is funky after that, we can tackle it.
February 11, 2010 at 4:05 pm #63106abcde666
Participant– Does not support remote login. Mapped domains must be logged into separately.
Does this mean it is not possible to run 5 WPMU+BP installs and have ONE single login across all 5 domains ?
February 11, 2010 at 3:45 pm #63103In reply to: cannot active buddypress plugin
Windhamdavid
Participantnice work,
that’s an odd fix since bp is only dependent on php 4.3..?
February 11, 2010 at 3:42 pm #63102In reply to: BBPress Intergration Trouble
edgy360
ParticipantI am using PHP version 5.2.10.
I am going to re-upload the theme that I am using (the default included with BuddyPress).
Also I don’t see any error logs and there are no error messages on the forums page (/forums).
February 11, 2010 at 3:40 pm #63101In reply to: cannot active buddypress plugin
rsqst
ParticipantAh hah!! I figgered it out myself.
Had to update to PHP 5 by adding “AddType x-mapp-php5 .php” to the .htaccess file at the root of the install.
Voilå!
February 11, 2010 at 3:31 pm #63099In reply to: cannot active buddypress plugin
rsqst
ParticipantHi there,
I’m getting the same error when I try to activate buddypress.
Buddypress 1.2 RC2
Wordpress 2.9.1 (not MC)
mySQL 5.0
hosting is done by 1and1.com
I’d appreciate any help you can offer…
February 11, 2010 at 2:09 pm #63090In reply to: BuddyPress Links 0.3-beta released for testing
David Angel
ParticipantI’ve just used MrMaz’s beta.
I’m not sure exactly how the comments are supposed to work, but I think something isn’t right with them: http://appleusers.net/links
I would have thought clicking on the comments for a given link would show you a thread of those comments, but right now it just goes to the homepage with a box to comment on the link?
Thanks for the sweet work!
February 11, 2010 at 8:31 am #63083In reply to: GPL Question re upcoming plugin release
thebloghouse
ParticipantReally interesting thread guys.
We are a few weeks away from releasing our first and potentially very lucrative plugin (WP not BuddyPress) and thought about selling our plugin and making some cash per user download but the main inhbiting factor for us was that we would be limiting it’s reach by it not being available in the WordPress repository.
In an ideal world we would also like to do the ‘nicer’ thing and go down the GPL route for everything we do without thinking twice but at the end of the day after many months of development your first GPL plugin is the hardest one to get out the door as it is a complete mind shift from the old closed software model we have been used to!
-
AuthorSearch Results