Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,626 through 6,650 (of 7,561 total)
  • Author
    Search Results
  • #47089

    It would require to make some kind of plugin for bbPress.

    The drawback of this ends up to still be the additional query per avatar that you hit the database server with, to ask BuddyPress what each users avatar is for each visible avatar. It might be possible to hook a bbPress function and join the query together to include the extended profile table to get the avatar location, but this type of thing hasn’t been developed or released yet.

    #47088
    2999261
    Inactive

    Right….

    Is there a way to do a “light” integration that will only do the avatars without doing all the other mess and without the plugins that do everything else??

    #47083

    No, not that easy unfortunately. The best way is to use “deep integration” so that you have all of the BuddyPress functions available for bbPress also.

    Otherwise you’d be wise to use Burt Adsit’s bpGroups plugin, and import the user bases extended profile information.

    #47082

    In reply to: Forum Avatars

    Deep integration between bbPress and WordPress is the easiest way, along with the bpGroups plugin by Burt Adsit.

    That way you can reference the users avatar and any other Extended Profile meta info.

    #47050
    2999261
    Inactive

    Thanks for the answer, Burt. Sounds like it wouldn’t be too difficult for someone that knew what they were doing… but lost on a non-coder like me.

    In the default bbpress theme (kakumei), I found post.php which has:

    <div id="position-<?php post_position(); ?>">
    <div class="threadauthor">
    <?php post_author_avatar_link(); ?>
    <p>
    <?php post_author_link(); ?><br />
    <small><?php post_author_title_link(); ?></small>
    </p>
    </div>

    Would it be something like replacing “post_author_avatar_link();” with “function bp_core_get_avatar( $user, $version = 1, $width = null, $height = null, $no_tag = false ) ” from bp-core-avatars.php?

    That seems too easy, so I doubt that’s it. Does anybody have a few minutes to type out a quick how-to?

    ougian
    Participant

    thanks for the wonderful fix :)

    #47043
    Burt Adsit
    Participant

    Well, you could take the fn bp_core_get_avatar() in bp-core-avatars.php, rework it a bit to get the bp avatar and operate in bbpress. The avatar path, if one exists, lives in user meta which is reachable from bbpress without deep integration or a plugin of any sort.

    plrk
    Participant

    I solved this by creating a bbPress theme that simply made everything invisible (css “display: none;” on everything) and redirected the users to the start page of my community by means of a meta refresh redirect.

    Since I am so extremely witty, I called it “Kakumei None”. You can download it here: http://dropbox.jobjorn.se/kakumei-none.zip

    #47005
    r-a-y
    Keymaster

    I sent this to Arturo, but I thought I’d post it on the forums as well!

    Here’s my complete bbPress functions.php code so far:

    function recreate_bb_admin_bar() {
    echo '<div id="wp-admin-bar"><ul class="main-nav">';
    bp_adminbar_logo();
    bp_adminbar_login_menu();
    bp_adminbar_account_menu();
    bp_adminbar_blogs_menu();
    bp_adminbar_notifications_menu();
    bp_adminbar_authors_menu();
    bp_adminbar_random_menu();
    echo '</ul></div>';

    }

    add_action( 'wp_footer', 'recreate_bb_admin_bar', 8 );
    add_action( 'admin_footer', 'recreate_bb_admin_bar' );
    add_action( 'wp_head', 'bp_core_admin_bar_css', 1 );

    Have fun!

    #47003
    Arturo
    Participant

    r-a-y is possible have what you’ve in functions.php of your bbpress theme and what in “add_action” in header.php or footer.php?

    thanks!

    #46992
    r-a-y
    Keymaster

    Perfect thread! Was looking for instructions to integrate the BP Core Admin Bar into bbPress.

    I did something a little bit different.

    Instead of hacking the core files, I used my bbPress theme’s functions.php file and added the functions listed in step #4 into a customized function I called “recreate_bb_admin_bar”.

    Then I added this function as an “add_action” and it works!

    *Make sure you have step #7 done as well.

    Thanks guys!

    #46955

    In reply to: BP Avatars in bbPress

    3092301
    Inactive

    I’m having the same issue. I have BP and bbpress integrated. In bbpress, the forum poster currently displays the link to the BP profile. This is good. However, I also want to show the poster’s BP avatar as well, just as it is showing in this forum. How is this done?

    Dan Butcher
    Participant

    Jeff, thanks for explaining where the data is stored. I will check my database and see if I notice anything unusual.

    As far as installation, no, the site was installed and configured on June 1, and then my students started accessing on June 2. That’s why this has seemed so odd to me that some students show all info and most don’t.

    I will mention that I didn’t do the install. I just set up hosting with TMD Hosting, and they offer complete BuddyPress install (with BBPress) as part of their service. My previous hosting was not configured to handle BuddyPress, so I had to go host shopping. I don’t have previous experience with BuddyPress, but I’ve been using WP for years, and as far as I can tell from the backend, everything seems to have been installed correctly, and the BBPress forums correctly integrated with BuddyPress. The only hitch has been with this user info.

    #46921
    Arturo
    Participant

    added define(‘WP_AUTH_COOKIE_VERSION’, 1); in wp-config at this moment, and nothing change…

    #46919
    Jeff Sayre
    Participant
    #46917
    Arturo
    Participant

    oh yes Jeff, and not just once…

    i’ve no problem to see the search and login bar, adminbar or “buddybar” with bp logo, My Account … Visit does not show.

    in the code that does not load the JS etc. (for adminbar) and i really don’t know why the other parts are loaded and that no.

    #46916
    Jeff Sayre
    Participant

    Okay, I see that you have seen this thread ( https://buddypress.org/forums/topic.php?id=2572 ). You have tried everything in that thread but can still not get the buddybar to show. Is that correct?

    Moominmama
    Participant

    Oh one more thing! I think my issue before was that I was using a newer version of bbpress on my install. I didn’t realize that until I went back through The Easy Button’s integration instructions:

    http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    This time around I used the bbpress he linked to directly and it was the old green interface. The one I used on the last screwy installation was a newer one with an interface much more like the current WordPress version. So that’s something else folks might want to try if they’re having trouble (going back down to an earlier BBPress install.)

    Working site is here: http://www.openadoptionsupport.com

    I was able to import users and groups very easily via PHPMyAdmin so I didn’t really lose anything with the clean reinstallation.

    #46871
    Michael
    Participant

    Okay, here are the answers to the questions that I know will get asked. Hope this helps.

    1. Which version of WPMU you are running: 2.7.1

    2. Whether you’ve installed WPMU in a subdirectory or as a subdomian: it is installed in the root folder. I also did a previous installation in a subdirectory. Both results were the same.

    3. Whether you upgraded from a previous version of WPMU. If so, from which version: No, first time installed wpmu

    4. Whether WPMU was functioning properly before installing/upgrading BuddyPress: yes. If you are defining “functioning properly” as using the multi-forum capability, then I wouldn’t know….I didn’t want WPMU for that. I just wanted WPMU so I could use BP.

    5. Which version of BuddyPress you are running: v1.0. Installed myself….didn’t use any scripts.

    6. Whether you have any plugins other than BuddyPress installed and activated, No. BP was the only plugin that was installed.

    7. Whether you are using the standard BuddyPress themes or customized themes: standard. I attempted to use the standard BP themes, and yes, I made sure that all files had been moved to the appropriate locations as per the instructions that were given.

    8. If running bbPress, which version: ????? What’s bbPress?

    9. A list of any errors in your server’s log files? Didn’t look. You’re talking to a novice. Wouldn’t know how to look at any server log files. I’m using Yahoo if that tells you anything.

    Moominmama
    Participant

    Well, the clean install fixed whatever was broken. I’m having some troubles getting forum integration going (it’s not seeing the bbpress files) but I’m not going to start that up here! (I may just wait until bbpress is more stable before moving forward w/integration since I kinda think it’s possible that’s where my problems came from anyway.)

    So to anyone having these kinds of weird ajax-y-ish problems? I recommend a clean install! I’m not going to mark this as resolved since @Rogercoathup may still want to be working on it — I’ll let him click the switch.

    Thanks for your help, Jeff!

    ougian
    Participant

    thanks for reminding me about it

    actually i reinstalled bbpress and left out this line in the second time.

    #46792
    Jeff Sayre
    Participant

    Rebootnow-

    If your issue is resolved, please set the light to green above and we’re good to go!

    #46786
    Arturo
    Participant

    another information… i’ve tryied with 0.9.0.4 and buddybar works but login no, i’ve tested 1.0-alpha-6 login work but buddybar no, and the same with 1.0-rc-1 and 1.0-rc-2 latest trunk…

    any help is really, but really appreciated!

    #46775
    Maxaud
    Participant

    I’ve made myself a personal copy of the BuddyPress.org theme without some of the features like bbPress design tweaks and such to mainly see what it took to make it. Really makes you appreciate CSS since it seems like 99% of it was just CSS changes.

    I’ve been wrking on doing some updates to http://www.wannanetwork.com also.

    I’m working on around 4 different BuddyPress powered websites with more scheduled. The themes being designed will probably have some sort of public release as well.

    This is an initial mockup for one of themes that will be release to the community:

    http://blogsupplier.com/images/mockup.jpg

    #46773
    Greg
    Participant

    Thanks Andy. So I need to figure out whether having the logout accessible from everywhere is important enough to incur the overhead of loading WP in bbPress.

    The BuddyPress forum seems pretty responsive, but I’m on a shared server.

    Great work on BP. Amazing what you’re empowering people to do with their sites.

Viewing 25 results - 6,626 through 6,650 (of 7,561 total)
Skip to toolbar