Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 57,926 through 57,950 (of 94,540 total)
  • Author
    Search Results
  • ewebber
    Participant

    Hi @boonebgorges it’s taken me a while to get round to this, after the last time I was a bit nervous to try it out.
    I’ve reverted to an old .htaccess file, but it’s still not working, everything is fine until I switch off Buddypress and I get a 500 Internal server error. The only way back was to reactivate the plugin through the database.
    Has anyone got any other ideas?
    Thanks

    mmln
    Member

    I use Super cache, it works but clears the cache every time some one logs in, then rebuild the cache from scratch….so painful.

    https://wordpress.org/support/topic/plugin-wp-super-cache-when-admin-logged-in-cache-gets-deleted

    http://wpscp.trac.armadillo.homeip.net/wiki/BuddyPress

    #111312
    Hugo Ashmore
    Participant

    Closing this year old thread.

    Theme announcements may be made in:
    https://buddypress.org/community/groups/buddypress-themes/

    #111311
    Hugo Ashmore
    Participant

    Closing this thread -newly created group for community theme promotions can be used to promote and group together offerings at:
    https://buddypress.org/community/groups/buddypress-themes/

    #111309
    lauhakari
    Member

    Looks awesome.. Will give the framework a go!

    #111307
    James
    Participant

    hi @cnorris23 ,

    fingers did not help, function returns:

    Warning: preg_replace() [function.preg-replace]: Unknown modifier ‘.’ in …… on line 2

    #111300
    nit3watch
    Participant

    I put this together some time ago though should still work. change gcode and dress code to what you would like. Save it as what ever you would like, with a php extension and place it in your plugins. Active and gl :P I also greated some group map plugin some time ago thats floating around on the forums.. you would have to search or wait for gpress.

    `<?php
    /*
    Plugin Name: BuddyPress Group Dress Code
    Plugin URI:
    Description: This plugin adds an additional field to group creation for a dress code
    Version: 1.0
    Revision Date: June 25, 2010
    License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
    Author: Charl Kruger
    Author URI:
    */

    /* Show group dresscode number in group header */
    $gdcode_show_dresscode_in_header = true ;

    /* – HERE BEGINS THE CODE – */

    // create the form to add the field
    function gdcode_add_dresscode_form() {
    ?>

    <input type="text" name="group-dresscode" id="group-dresscode" value="” />

    <?php

    }
    add_action( ‘groups_custom_group_fields_editable’, ‘gdcode_add_dresscode_form’ );

    // Save the dresscode number in the group meta – perhaps use serialize() and maybe_unserialize()
    function gdcode_save_dresscode( $group_id ) {
    global $bp;

    if($bp->groups->new_group_id)
    $id = $bp->groups->new_group_id;
    else
    $id = $group_id;

    if ( $_POST )
    groups_update_groupmeta( $id, ‘gdcode_group_dresscode’, $_POST );
    }

    // Get or return the dresscode number
    function gdcode_group_dresscode() {
    echo gdcode_get_group_dresscode();
    }
    function gdcode_get_group_dresscode( $group = false ) {
    global $groups_template;
    if ( !$group )
    $group =& $groups_template->group;
    $group_dresscode = groups_get_groupmeta( $group->id, ‘gdcode_group_dresscode’ );
    $group_dresscode = stripcslashes( $group_dresscode );
    return apply_filters( ‘gdcode_get_group_dresscode’, $group_dresscode );
    }

    // show dresscode number in group header
    function gdcode_show_dresscode_in_header( $description ) {
    global $gdcode_show_dresscode_in_header;
    if ( gdcode_get_group_dresscode() && $gdcode_show_dresscode_in_header ) {
    $description .= ‘

    ‘. __(‘Dress code’, ‘gdcode’).’: 

    ‘.gdcode_make_dresscode_for_group().”;
    }
    return $description;
    }
    add_filter( ‘bp_get_group_description’, ‘gdcode_show_dresscode_in_header’ );

    // show number for an individual group
    function gdcode_make_dresscode_for_group() {
    global $bp, $wpdb, $gdcode_args;

    $group_dresscode = gdcode_get_group_dresscode();
    $group_dresscode = ‘

    ‘.$group_dresscode.’

    ‘;

    return $group_dresscode;
    }

    add_action( ‘groups_create_group_step_save_group-details’, ‘gdcode_save_dresscode’ );
    add_action( ‘groups_details_updated’, ‘gdcode_save_dresscode’ );
    ?>`

    #111299
    Michael Eisenwasser
    Participant

    @josh101. @mentions are confusing to 99% of users, for real. I have built lots of client sites and literally *every* client asks me WTF are @mentions. I tell them how it works and they say why doesn’t it just work like Facebook, and I pretty much have no response because I agree with them. Hence, http://www.buddyboss.com :)

    #111298
    Michael Eisenwasser
    Participant

    I have long thought BuddyPress was confusing, and so I decided to take on the task of building a theme that would solve every issue I have with BuddyPress. It can be downloaded at http://www.buddyboss.com.

    1. Groups and Forums are combined in an INTUITIVE way on my theme. It finally makes sense!
    2. @mentions are gone. In their place is a TRUE Facebook wall on every profile. Post on friend’s profiles and status updates with threaded comments. You’ve got to try it to see how sweet it is :)
    3. Stripped out all of the nonsense that adds to BuddyPress’ general chaos, and what’s left is a simple and enjoyable experience.

    #111297
    Michael Eisenwasser
    Participant

    Try the BuddyBoss theme at http://www.buddyboss.com. It combines groups and forums in a way that is MUCH more intuitive than the default BuddyPress setup, no hacking required. I think a big issue with BuddyPress is that the layout of groups and forums is usually confusing to people. We’ve fixed that :)

    Michael Eisenwasser
    Participant

    Here’s the answer! It has always frustrated me how @mentions work in BuddyPress as I find it chaotic and confusing for users. So I built a theme that converts the @mentions system into a TRUE Facebook wall with post to profile and threaded replies. If you every need to, at any time you can deactivate our Wall Component from the dashboard and your content will revert to @mentions, You can download the theme at http://www.buddyboss.com.

    #111295
    Michael Eisenwasser
    Participant

    Yes. The BuddyBoss theme at http://www.buddyboss.com has a true Facebook-style wall built in. It converts @mentions into an intuitive wall posting system with threaded replies.

    Michael Eisenwasser
    Participant

    You might want to try the BuddyBoss theme at http://www.buddyboss.com. It has a built in Wall on user profiles. Images and video can be added via oEmbed for BuddyPress, and the wall functions like a true Facebook wall in terms of how the conversation flows. It converts @mentions into wall posts so the BP Gallery plugin could potentially be integrated if you know what you’re doing.

    #21630
    danbpfr
    Participant
    #111287
    Famous
    Participant

    hello @mercime I didn’t get your reply till much later. I ended up finding what you said above:

    And it worked great, however I have one more situation I was hoping you could help me out with. I want to click:

    <p class="">
    

    the above and have it go to the next picture, instead of just showing the same image on the page only, any idea?

    #111286
    LPH2005
    Participant

    @hnla – as always – you are the champion of css. I totally misunderstood the custom.css file and was adding the css into the dialog box on the Sealight control panel labeled custom css: “Quickly add some CSS to your theme by adding it to this block.” Without even looking, I just figured it was building that custom.css file. Plus, if I didn’t add it into that box then the styling wouldn’t work. Silly me.

    Now, in terms of the activity-inner styling … I’ve now added it all to the custom.css and still can’t get activity-inner to work. Sigh. I’ve left that code in the custom.css and it doesn’t show in firebug either.

    http://www.thechembook.com/chemistrycircle

    I was going to work on getting the styling of the bubble like I did here: http://www.thechembook.com/groups/advanced-placement-chemistry-learners/forum/topic/the-atom-fast-facts-a-summary-sheet/

    #111285
    Brandon Allen
    Participant

    You can easily change the default avatar in your dashboard under BuddyPress > General Settings. The reason it doesn’t use the WordPress avatar setting is because BuddyPress is designed to be it’s own site with it’s own settings. If you want to disable gravatar support completely you can set no_grav to true in your theme’s bp_core_fetch_avatar function calls. This will be made even easier when 1.3 is released.

    #111284
    Hoodie Mark
    Participant

    I need to do the exact same thing. @Matilde did you ever find an easy solution?

    #111283
    webmystery
    Participant

    Thank you everybody for the suggestions. I’m setting up a site for an artist community and I don’t want BuddyPress to assign (IMHO not very attractive) monster gravatars to the members at all. Perhaps a future version could be written to respect the WordPress setting for No Avatar.

    #111279
    Brandon Allen
    Participant

    This functionality is currently being developed by @wpmuguru, but I don’t know that there has been any timeline published as far as a plugin release or it being included in core.

    #111278
    astromono
    Participant

    I actually was able to fix it as well with your code. I tried it, but I think I’ll stick with just putting in the correct BP_ROOT_BLOG value for the site I’m running.

    Now the only other issue that’s been cramping my style is the fact that the BuddyPress admin bar is overlapping on the wp-admin dashboard on all sites within my network.

    #111275
    Anthony
    Member

    @beraike22, do u have a working example we can see? also I’m having issues with that plugin, when I enabled it, it seems like I would have to indeed modify it to show some plugins when i’m signed in. The problem with that is for troubleshooting purpose I can’t not be logged in, thus I want to test this out when asked to register or join. can you give me a bit more detail on how to achieve multiple profile types upon registration?

    #111274
    Brooker
    Member

    I have 1.2.8 and having the same issue, i took a look into pb-friends.php and the code seems correct…
    global $bp;

    if ( isset( $_GET ) )
    bp_core_delete_notifications_for_user_by_type( $bp->loggedin_user->id, $bp->friends->id, ‘friendship_accepted’ );
    }
    add_action( ‘bp_activity_screen_my_activity’, ‘friends_clear_friend_notifications’ );

    @r-a-y @DJPaul?????

    #111267
    chrisreg1
    Member

    R-a-y – that doesn’t work for me unfortunately.

    I am using the:
    – latest version of WordPress 3.1.2
    – Child theme of Suffusion

    And the latest plugins for Suffusion BP Pack (1.02), BuddyPress (1.2.8), and s2Member (3.5.7).

    Using the s2Member plugin settings, I have set my site to redirect users to a “Member Home” page upon logging in. This function used to work before I added BuddyPress + Suffusion BP Pack. However, since adding those plugins, I initially could not figure out why it no longer worked upon logging in. Currently, when a user logs in, the site just directs them to the main page (the default WordPress & site address). I disabled the other plugins and determined that it was BuddyPress handling the redirection.

    So I made a bp-custom.php and added that code just to see if I can test the redirection function itself and it didn’t work. I even tweaked his code as well to try add_filter(“login_redirect”,”bpdev_redirect_to_profile”,100,3); Did I need to do anything else to activate the plugin or did it automatically run and link to BuddyPress?

    Ultimately, it seems like I may have to implement a technique that onyx mentioned or something like http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/

    Does anyone have any thoughts? Thanks!

    #111263
    Brooker
    Member

    @r-a-y is there a tutorial in how to get this done?
    Thank you so much for your help =)

Viewing 25 results - 57,926 through 57,950 (of 94,540 total)
Skip to toolbar