Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,326 through 58,350 (of 69,016 total)
  • Author
    Search Results
  • #63168
    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.

    #63163
    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. :)

    #63162
    peterverkooijen
    Participant

    What is the latest on this? Can anyone recommend a plugin/theme that works for BP or an approach how to make it work?

    #63161
    peterverkooijen
    Participant

    What 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…)

    #63158
    Scotm
    Participant

    @25knots

    I’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?

    #63157
    Dwenaus
    Participant

    I’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.

    #63148
    danbpfr
    Participant

    Take 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

    #63142
    Diesel Laws
    Participant

    The 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.

    #63141
    fastfido
    Participant
    #63140
    bruzed
    Member

    Hi, 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!

    snark
    Participant

    I 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.

    snark
    Participant

    Where 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?

    #63129

    In reply to: Group/Profile Layout

    bobs12
    Participant

    Greetings 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 :)

    #63126
    abcde666
    Participant

    Thanks a lot Andrea !

    #63120
    Dwenaus
    Participant

    OK, 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.

    #63115
    Andrea Rennick
    Participant

    I;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.

    #63111
    r-a-y
    Keymaster
    #63109
    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.

    #63106
    abcde666
    Participant

    Multi-Site plugin

    – 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 ?

    #63103
    Windhamdavid
    Participant

    nice work, ;) that’s an odd fix since bp is only dependent on php 4.3..?

    #63102
    edgy360
    Participant

    I 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).

    #63101
    rsqst
    Participant

    Ah 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å!

    #63099
    rsqst
    Participant

    Hi 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…

    #63090
    David Angel
    Participant

    @nickmy

    I’ve just used MrMaz’s beta.

    @MrMaz

    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!

    #63083
    thebloghouse
    Participant

    Really 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!

Viewing 25 results - 58,326 through 58,350 (of 69,016 total)
Skip to toolbar