Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 41,176 through 41,200 (of 64,522 total)
  • Author
    Search Results
  • #101548
    zaerl
    Participant

    all over the place.

    bbPress doesn’t collect individual topic views nor it displays them. Did you mean “topic voices”?

    The code looks like tangled spaghetti

    The code is very clean.

    #96029

    In reply to: bb Mystique Theme v1.0

    Gautam Gupta
    Participant

    Well, the gap is deliberate – you can see that in the original Mystique theme too. To remove that, you can put this at the end of the theme’s style.css:

    .shadow-right{ padding-bottom: 0 !important; }

    And the icons aren’t actually hidden – when you hover the icons, they should come out – but that’s only possible when you’ve the latest version of jQuery running (that is in bbPress dev aka trunk version, not in 1.0.2 or below). So what you can do is, download the latest jQuery and replace it with the one present on your server (bb-includes/js/jquery/jquery.js).

    #101129

    In reply to: bb Mystique Theme v1.0

    Gautam Gupta
    Participant

    Well, the gap is deliberate – you can see that in the original Mystique theme too. To remove that, you can put this at the end of the theme’s style.css:

    .shadow-right{ padding-bottom: 0 !important; }

    And the icons aren’t actually hidden – when you hover the icons, they should come out – but that’s only possible when you’ve the latest version of jQuery running (that is in bbPress dev aka trunk version, not in 1.0.2 or below). So what you can do is, download the latest jQuery and replace it with the one present on your server (bb-includes/js/jquery/jquery.js).

    #96458

    In reply to: bbPress uses WP theme?

    blahman29
    Member

    Hey decas,

    I followed this tutorial here..

    http://www.adityanaik.com/integratepress-part-i/

    And was able to style my theme within wordpress like this..

    http://www.designsaga.com/forum

    You will need to coding knowledge to get it working though.

    #101558

    In reply to: bbPress uses WP theme?

    blahman29
    Member

    Hey decas,

    I followed this tutorial here..

    http://www.adityanaik.com/integratepress-part-i/

    And was able to style my theme within wordpress like this..

    http://www.designsaga.com/forum

    You will need to coding knowledge to get it working though.

    #94464
    slee
    Member

    is there an idea of when this will be publicly launched ie it will be safe to use on a site?

    I am very eager to use this!

    #96406
    slee
    Member

    seems to of fixed it for now i downloaded the bbpress integration plugin and it seems to of given it a big kick :)

    #101506
    slee
    Member

    seems to of fixed it for now i downloaded the bbpress integration plugin and it seems to of given it a big kick :)

    #35686

    Topic: bbPress uses WP theme?

    in forum Themes
    decas
    Member

    Hello guys, I think this question was answered in this forum but sorry I can’t find it. So my problem:

    I want to make bbpress use wp theme. Just open wp site, press forum and you are still in website (I want to make it look like a page). How to do that? I used themepress but theres no images and css when I install it…

    Sorry for my english.

    #94463
    doobadabba
    Member

    Another thing is about avatars.

    If I recall correctly, the current version of bbpress only has native support for “gravatars”.

    Many people, such as me, don’t want “an image that follows you from site to site appearing beside your name when you do things like comment or post on a blog.”

    I much prefer allowing members of my site to have an avatar that is specific to their profile on my site.

    Hopefully future versions of bbpress have native support for both gravatars and also avatars that are not gravatars.

    #94462
    doobadabba
    Member

    JJJ, thanks for all your work on the new bbpress!

    I run a wordpress site that uses a premium classifieds theme, and I have a bbpress forum integrated on the site.

    One little issue is that members of my site have both a forum profile and another profile associated with the classifieds section.

    It would be best if members of my site had only a single profile, that could be linked to from both the forum and from the classifieds section.

    And the profile could show both recent forum posts of that member, as well as recent classified ads.

    I’m not sure if this issue is best to bring up here with bbpress of maybe with the developers of the classifieds theme, or if it’s something I should try to handle myself.

    Lily
    Member

    Is there a plugin or an easy mod to show the replies to topics in a thread on the topic page, similar to the phorum.org demo here:

    http://www.phorum.org/demo/list.php?2, and

    http://makeupalley.com/board/board.asp?bid=1

    Thanks in advance.

    #63079
    Alex
    Participant

    None of these seem to work for me in the latest version of bbPress. Any ideas on how to get this working?

    #96435
    blahman29
    Member

    I was looking for this also, thanks Gautam!

    #101535
    blahman29
    Member

    I was looking for this also, thanks Gautam!

    #96327

    In reply to: topic_tags()

    blahman29
    Member

    Thanks mr_pelle!

    Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?

    I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar

    echo bb_get_avatar( get_post_author_id(), '70');

    It seems I need to echo it out.

    #101427

    In reply to: topic_tags()

    blahman29
    Member

    Thanks mr_pelle!

    Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?

    I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar

    echo bb_get_avatar( get_post_author_id(), '70');

    It seems I need to echo it out.

    #96434
    Gautam Gupta
    Participant

    Welcome!

    #101534
    Gautam Gupta
    Participant

    Welcome!

    #96433
    auphoria
    Member

    Thank you! Works perfectly!

    #101533
    auphoria
    Member

    Thank you! Works perfectly!

    #96432
    Gautam Gupta
    Participant

    The bbPress development (a.k.a. trunk) version allows you to choose what that link should link to (profile or website). But as you’re using 1.0.2, you can change <?php post_author_link(); ?> to:

    <a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>"><?php post_author( get_post_id() ); ?></a>

    That should probably work…

    #101532
    Gautam Gupta
    Participant

    The bbPress development (a.k.a. trunk) version allows you to choose what that link should link to (profile or website). But as you’re using 1.0.2, you can change <?php post_author_link(); ?> to:

    <a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>"><?php post_author( get_post_id() ); ?></a>

    That should probably work…

    #35677
    auphoria
    Member

    At the moment, this code <?php post_author_link(); ?> links to the url that users type in, I have some linked to BP profile, some linked to their personal websites.

    Is there a way to replace this code to link to their bbpress profile?

    p.s. this is the link beneath user avatar.

    #94461
    Rich Pedley
    Member

    I was going to wait until JJJ said go – as I assumed there would be a fair few updates in the next couple of days.

Viewing 25 results - 41,176 through 41,200 (of 64,522 total)
Skip to toolbar