Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,601 through 58,625 (of 69,016 total)
  • Author
    Search Results
  • #62516
    thekmen
    Participant

    presume my last post got caught in the spam que because of two links, so will avoid this time.

    The parent theme is Justin Tadlocks Theme Hybrid & the child theme is down to Patrick of developdaly.com.

    I just added the BuddyPress reguired functions to my child theme, loving the functionality of BuddyPress 1.2, still some CSS needing to be worked out, but am happy to share the theme/code if wanted

    #62514

    In reply to: Buddypress Integration

    jgadbois
    Participant

    Ok, I activated the plugin, and didn’t receive any errors. However, I’m not seeing an admin menu and the Example tab is just redirecting to the home page. Any suggestions? I’m also running on straight WP not WPMU. I’m assuming the admin menu stuff should be the same though, so I’m confused as why that part at least doesn’t work.

    #62512
    Scotm
    Participant

    @andrea_r i’m looking to have posts on the main page. definitely potential for conflicts with js/ajax.

    #62511
    Andrea Rennick
    Participant

    I must say, you did a good job.

    #62510
    Andrea Rennick
    Participant

    Guess it depends on a couple things:

    – what you want on the front page (activity stream vs posts)

    – if there’s any javascript/ajax conflicts between bp & p2.

    man I wish I had time to play. :D

    #62509
    Jean-Pierre Michaud
    Participant

    the logic is to not use the blog but the interface… that’s why the blog is supposed to be set to private instead of public.

    #62506
    thekmen
    Participant

    @Symm2112 its using Justin Tadlocks Hybrid as parent theme and a blend of the Malleable child theme from Patrick of http://developdaly.com/

    #62504
    Michael Berra
    Participant

    Cool, seems to work. Strangely I still cannot post a classified via frontend… hmmmm… tried it on two computers. When I check in the blog, it created some draft-posts… Any ideas?

    A totally different question. I would like to try a localization in german :-). Maybe just for me (pretty customized). BUT I never did this… How does my .mo file gets called in your plugin? Where do I have to put it? Thanks :-)

    #62503
    nig3d
    Participant

    oh sorry, I misunderstood the initial post (I haven’t read it carefully, I didn’t get you were the one who put it on :) )

    #62502
    symm2112
    Participant

    What theme is that using?

    dainismichel
    Participant

    Right, and what code displays the “Main Themes” and where do I put it…I have some attempts here https://buddypress.org/forums/topic/how-to-access-to-bbpress-admin-from-buddypress but that’s not cutting it.

    Maybe I’ll just try sticking

    $forums = bb_get_forums();

    “somewhere…”

    #62499
    thekmen
    Participant

    the reason for only 2 members is because I have only just put buddypress on the site

    #62498
    nig3d
    Participant

    looks good, but 2 members only?! :)

    #62495
    schwooba
    Participant

    Yep. I’m having problems. I’m running WPMU 2.9.1.1 and BP 1.2. In the group section, when I have TinyMCE enabled and I enter some text, I get this error “Please enter some content to post.” Any ideas?

    #62491
    Fabiano Arruda
    Participant
    #62490
    Scotm
    Participant

    @mercime I’d like to hear from someone who has enabled the P2 theme for BuddyPress, for starters, and I’m not looking for major customizations.

    Simply ensuring that the features within BuddyPress stay intact when using P2 versus the default theme would do nicely.

    Thx

    #62486
    grosbouff
    Participant

    pff..SVN is so weird :)

    I just repload the whole thing.

    I about ~20min it should be available

    #62483
    Michael Berra
    Participant

    You are fast – buit I think that some files are missing in the zip… no subfolders in it and now it shows no page at all :-)

    #62482
    grosbouff
    Participant
    #62481
    grosbouff
    Participant

    @nexia : there has been core modifications.

    Update to BuddyPress 1.2-beta REV 2608 and BuddyPress Classifieds 1.003-beta.

    —-

    Also, the theme is now included in the plugin, so you can remove the classifieds directory from your current theme.

    #62477
    josephtravers
    Participant

    Okay… maybe I mispoke. :)

    What can we add to one of the php files so that html tags like “img”, “em”, “strong”, etc will work?

    I’m one of the many php/buddypress newbies who are still learning. :)

    #62471
    D Cartwright
    Participant

    Okay, I’ve implemented the fix Boone suggested. The plugin download should update shortly.

    In the meantime, if anyone wants to quickly fix the the files they’ve already downloaded, do the following:

    In “bp-activity-subscription-main.php” change line 3 to the following:

    require_once( WP_PLUGIN_DIR.'/buddypress-group-activity-stream-subscription/bp-activity-subscription-functions.php' );

    #62470
    Mike Pratt
    Participant

    so here’s a tweaked version and the latest in my custom tab efforts, fyi:

    // passes MyClass scope into ajax query for custom Class Year activity filter
    function bn_ajax_querystring_activity_filter( $query_string, $object, $filter, $scope, $page, $search_terms, $extras ) {

    global $bp;

    if ( !is_user_logged_in() || $object != 'activity' )
    return $query_string;

    $args = array();
    parse_str( $query_string, $args );
    $args['object'] = $bp->groups->id;

    switch ($scope){

    case 'myclass':

    $slug = "usma-". bp_get_profile_field_data( array('field'=> 'Class Year', 'user_id' => $bp->loggedin_user->id));
    $groupid = BP_Groups_Group::get_id_from_slug($slug);
    $args['primary_id'] = $groupid;
    break;

    case 'mycadetco':

    $slug = bp_get_profile_field_data( array('field'=> 'Cadet Company', 'user_id' => $bp->loggedin_user->id));
    $groupid = BP_Groups_Group::get_id_from_slug($slug);
    $args['primary_id'] = $groupid;
    break;

    case 'mybranch':

    $slug = sanitize_title(bp_get_profile_field_data( array('field'=> 'Branch', 'user_id' => $bp->loggedin_user->id)));
    $groupid = BP_Groups_Group::get_id_from_slug($slug);
    $args['primary_id'] = $groupid;
    break;

    default:

    return $query_string;
    }

    return http_build_query( $args );
    }
    add_filter( 'bp_dtheme_ajax_querystring', 'bn_ajax_querystring_activity_filter', 1, 7 );

    and the action:

    function bn_add_activity_tab() {

    if ( !is_user_logged_in() )
    return false;
    ?>
    <!-- default item-list-tabs activity-type-tabs

    <ul> -->

    </div><!-- default item-list-tabs activity-type-tabs -->

    <div class="item-list-tabs activity-type-tabs" id="bn-tabs">

    </ul>
    <ul>
    <li id="activity-myclass">
    <a>" title="<?php _e( 'Activity for my Class Year', 'buddypress' ) ?>">
    <?php printf( __( 'My Class', 'buddypress' ) ) ?>
    </a>

    <li id="activity-mycadetco">
    <a>" title="<?php _e( 'Activity for my Cadet Company', 'buddypress' ) ?>">
    <?php printf( __( 'My Cadet Company', 'buddypress' ) ) ?>
    </a>

    <li id="activity-mybranch">
    <a>" title="<?php _e( 'Activity for my Army Branch', 'buddypress' ) ?>">
    <?php printf( __( 'My Branch', 'buddypress' ) ) ?>
    </a>

    <?php
    }
    add_action( 'bp_activity_type_tabs', 'bn_add_activity_tab', 1, 2 );

    A few things to note:

    1. use the WP function sanitize_title() if you have a field that might return more than one word e.g. the group ‘Military Police’ returns ‘military police’ but transforms into ‘military-police’ (a pretty slug0 which gives you a correct slug now.

    2. I added addl markup to force my new tabs into their own element.

    3. Don’t be shy to make suggestions and keep improving this technique. I think many will use it to customize their installs.

    #62467
    Boone Gorges
    Keymaster

    D Cartwright – Great plugin. The problem is that the plugin name in the repo is buddypress-group-activity-stream-subscription, while all of your includes assume that the plugin folder will be called bp-group-activity-stream-subscription. I renamed my plugin folder and all’s well.

    I think this is going to be huge for my community, btw, so thanks.

    #62462
    Paul Wong-Gibbs
    Keymaster

    bp_has_friendships was removed in BP 1.2 and put into the backwards compatibility update. Try something like:

    if ( bp_has_members( ‘user_id=’ . $user_id . ‘&type=alphabetical&per_page=0’ ) ) {

    while ( bp_members() ) : bp_the_member();

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