Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 41,201 through 41,225 (of 64,535 total)
  • Author
    Search Results
  • #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?

    #101535
    blahman29
    Member

    I was looking for this also, thanks Gautam!

    #96435
    blahman29
    Member

    I was looking for this also, thanks Gautam!

    #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.

    #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.

    #101534
    Gautam Gupta
    Participant

    Welcome!

    #96434
    Gautam Gupta
    Participant

    Welcome!

    #101533
    auphoria
    Member

    Thank you! Works perfectly!

    #96433
    auphoria
    Member

    Thank you! Works perfectly!

    #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…

    #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…

    #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.

    #35675
    #35665
    #101451
    Gautam Gupta
    Participant

    Nice..

    #96351
    Gautam Gupta
    Participant

    Nice..

    #94460
    Gautam Gupta
    Participant

    Just to keep you people updated, this is the progress so far:

    1. Topic & Post Counts – This works fine, except for displaying post counts in forums, jjj said that he’s working on a patch which would be ready by Sunday.
    2. Voice Counts – Check #1330, has patch
    3. Rough Template – Done, except for front-end posting
    4. Admin area clean-up – This is pretty fine
    5. User’s Profiles, Posts, Favorites – Todo

    If you’re interested in development, then you can checkout a copy of the plugin, test out patches or create tickets for bugs/enhancements etc.

    #101308
    stevan
    Member

    What do you mean by lite wp? Plagin for wordpress integration or blog plugin for bbpress? There is bb-blog plugin but it needs some more work to become complete solution.

    https://bbpress.org/forums/topic/bbblog-20-plugin

    #96208
    stevan
    Member

    What do you mean by lite wp? Plagin for wordpress integration or blog plugin for bbpress? There is bb-blog plugin but it needs some more work to become complete solution.

    https://bbpress.org/forums/topic/bbblog-20-plugin

    #94205
    KentonMr
    Member

    I find all this SCN TRAC TRUNK all a bit gibberish and well beyond what I need to know.

    I find the version control of bbPress also confusing and always thought that the most stable version was on the main download page.

    The “bug” being discussed is not a show stopper (there are more irritating things) but it is fairly obvious in the code what is breaking this.

    Two things in functions.bb-template.php

    The use of <fieldset> and <div> inside the form – comment them out in bb_get_topic_move_dropdown() and add the lines

    $r .= bb_get_topic_delete_link($args);

    $r .= bb_get_topic_close_link($args);

    $r .= bb_get_topic_sticky_link($args);

    after the initial <form> line.

    commenting out the original lines in the bb_topic_admin() as

    // ‘delete’ => bb_get_topic_delete_link($args),

    // ‘close’ => bb_get_topic_close_link($args),

    // ‘sticky’ => bb_get_topic_sticky_link($args),

    This is by no means an elegant solution but it appears to work.

    I’m sure something more elegant could have been done in css.

    #94459
    Ryan Gannon
    Member

    I’ve been watching the action unfold on the trac… and in my spare time I also like to watch paint dry. But no, it’s great to see stuff happening. :)

    #101450

    good work

    #96350

    good work

    #101426

    In reply to: topic_tags()

    mr_pelle
    Participant

    Indeed it is.

    About avatars, bbPress uses bb_get_avatar().

Viewing 25 results - 41,201 through 41,225 (of 64,535 total)
Skip to toolbar