Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 42,426 through 42,450 (of 64,530 total)
  • Author
    Search Results
  • #91621

    From what I see, people who are in favor of fork of bbPress 0.9 over 1.0+ are developers only.

    If you haven’t voted yet, then you can vote here – http://poll.fm/239qh

    #90177

    You can enable them from the dashboard first and then you can increase the size of the avatars in your theme by the link I gave you

    #90176
    Marius-
    Member

    I never got avatars working in the first place.

    #90175
    #82563
    pagal
    Participant

    why not bbPages Plugin?

    #78509
    pagal
    Participant
    #90174

    In order to help get 1.1 out of the door (or actually to help get 1.0.3 out the door before the decree came down to not release 1.0.3) a large number of useful and needed Tickets in Trac were bumped to 1.5 ( now, “future release” – the name initself laughable ;-] ).

    So I’ve moved a number (about 1/3) of those tickets back.

    #91753

    _ck_,

    More truly excellent work.

    I offered a different solution though, it’s a geneology plugin thats currently with a few folks for testing. It is far from as elegant as this (though it’s scope is wider).

    One of the things that I’ve “diskiked” about bbPress is lack of support for heirarchies. I know you’ve written some excellent code for finding the last poster for forums with sub forums before, but like the code above, they’re all workarounds.

    It also makes it difficult for theme developers to get on board when wanting to call basic API functions for “last poster” for a forum or topic etc. At some stage, I’d love a discussion on small things like this where we could improve bbP0.9

    #91718

    While it’s great that Matt is overseeing the complete reqrite of this project into something that requires WordPress to run, I think we should be just a tad guarded against getting euphoric about 1 line in 1 interview.

    First off, the interview took places months before it’s published date, and lets remember that on 1st May (only 2 months ago) Matt’s opinion was this:

    http://bbshowcase.org/audio/Matt-on-bbPress-2010-May-1.mp3

    #90173
    Marius-
    Member

    Oh :(

    I wish all us other users could have it like this.

    I view this support forum as sort of the default showcase for what bbpress is.

    #90172
    Gautam Gupta
    Participant

    Marius, that is a theme’s work – not of bbPress.

    #90171
    Marius-
    Member

    So will we get nice avatars like this forum has?

    #91717
    Marius-
    Member

    Great. Sounds really great.

    I dont know if he will achieve anything, but his smartness in speeches should atleast indicate it.

    #56991
    zaerl
    Participant

    bbPress and WordPress use gravatar which is the same service.

    #31609
    Lite
    Member

    Hi,

    My question is simple. Is it possible to give every created blog inside a WPMU Network its own BBPress forum?

    If yes, is there any howto?

    Greetings,

    Lite

    #56990

    Does this work good, or should I keep looking for a better solution? I want avatars to match on WordPress and BBpress integrated site.

    #34860
    _ck_
    Participant

    I’ve noticed that depending on the site configuration, many times plugins or template designs will require information about the first poster in a topic or the last poster.

    The problem is that bbPress unfortunately (even in 1.1) only caches the post authors that are on the physical page you are on. So it causes two “out of flow” queries (one for user, one for usermeta) for each of those authors (first, last).

    This means up to four needless queries are added depending on the topic page number (not first or last is the worst hit).

    Even worse there is no direct filter/action on that process so it cannot be affected directly.

    However I’ve come up with a workaround using a trick,

    by catching the actions before and after the process.

    I’ve only tested this on 0.9, but in theory should work in 1.1

    if (is_topic && !is_bb_feed()) {
    add_action('bb_topic.php_pre_db','usercachefix_load');
    add_action('bb_topic.php','usercachefix_unload');
    function usercachefix_load() {add_action('get_forum_where','usercachefix');}
    function usercachefix_unload() {remove_action('get_forum_where','usercachefix'); global $posts; unset($posts['first'],$posts['last']);}
    function usercachefix($x) {global $topic,$posts; $posts['first']->poster_id=$topic->topic_poster; $posts['last']->poster_id=$topic->topic_last_poster; return $x;}
    }

    Make it into a mini-plugin and give it a try.

    You really only need it if you are showing info about the first and/or last poster on every page of the topic.

    You should see the query count go down by two to four queries on the page.

    Or use bb-benchmark to more closely examine the queries and look for multiple calls to the user-table and usermeta-table.

    #34859
    nickaster
    Member

    Howdy. I’m hearing that people have managed to get Facebook Connect to work as an option for users on bbpress… so, I followed these instrucions:

    Solution for facebook connect

    And it’s the last part that’s confusing me.

    “Integrade a fb-connect button on your bbpress site”

    What does that mean? What does the code look like and where should it go?

    Thanks!

    #91694
    XU3E
    Member

    I have a same problem. But for me, the users are registered by WP but at bb they dont have any role so they cant post anything.

    Temporary solution could be Role Manager. But this should be eliminated as soon as is possible.

    + another one problem is deleting users. I tried delete user at WP admin. But bbpress still has that user at database. Is something wrong with integration?

    #90170
    chrishajer
    Participant

    So what? I put that milestone in there after plucking it from thin air. It is what it is. At the time, it seemed reasonable with the amount of tickets we had open. Then we added more tickets. And we fixed them. I think any ticket created after 1257 was after I changed the milestone to April 30.

    As the trac says:

    “Due date is only to force the order of milestones and does not reflect any actual release schedule.”

    #34857
    pagal
    Participant

    Some days old post but really optimistic for bbPress.

    I don’t need to personally write code much these days because we have so many talented folks involved but I am jumping back in on bbPress and will be hacking around in there.

    #91678
    kai920
    Member

    Ah, I found the culprit. I had converted from another forum software so the topic_slug and forum_slug columns were empty. Found a script here http://www.simonwheatley.co.uk/2009/07/03/migration-to-bbpress-fix-topic-slugs/

    It didn’t convert my forum slugs but that wouldn’t take long to manually input.

    #90169
    hpguru
    Member

    Yes, but…

    Milestone: 1.0.3

    3 months late (04/30/10)

    #91620
    Greg
    Participant

    > two dozen users that insisted on using “Greg” as their display name and similar avatars?

    With normal users in a healthy forum with a sense of community, duplicates will self correct. People will create unique pictures to identify themselves.

    With malicious users, that’s a moderation issue and should be an isolated incident in a healthy forum.

    In an unhealthy forum you have bigger problems than duplicate profile pictures.

    Like I said earlier in the thread, a lot depends on the nature of the forum. If it is a tight knit community, then you really don’t need to compromise the user experience to cater for the edge case you describe.

    But in a support forum I could imagine this being more of an issue so I wouldn’t use non-unique display names in that situation.

    #91619
    _ck_
    Participant

    User-Name-less systems like facebook need to be designed from scratch like that. The WordPress/bbPress system unfortunately is user_login/user_id based.

    You could force user_id for the profile stub if that makes you like it better, bbPress will accept either.

    BTW in a forum based system, how would you deal with two dozen users that insisted on using “Greg” as their display name and similar avatars?

Viewing 25 results - 42,426 through 42,450 (of 64,530 total)
Skip to toolbar