Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,151 through 40,175 (of 64,532 total)
  • Author
    Search Results
  • #94749
    Rich Pedley
    Member

    did you resave your permalinks?

    #94748
    Ryan Gannon
    Member

    Revision 2704 is still causing me trouble regarding the 404/permalink issue. I’ve tried reactivating the plug-in and theme but to no avail.

    #94747
    Rich Pedley
    Member

    user settable perhaps?

    default: single reply

    or link to whole topic as a secondary option.

    #94746
    Erlend
    Participant

    I still find being sent to a singular reply utterly confusing. I definitely acknowledge the value in this functionality, but in an ordinary forum context I prefer just being sent to the #reply in question plus the whole thread loaded with it, like here.

    I hope this is just being done to see if it works :)

    #94745
    AdamBaird
    Member

    Can anyone hook me up with a list of bbPress conditional tags? Also, are the working with this plugin version yet? I would assume so, but figured I would make sure.

    #98315
    ljx0517
    Member

    no yet.

    my data now in mysql

    i want use these data to make a new forum .

    now i choose bbpress

    but I’m afraid so many data will make bbpress slowly

    now only a select count(*) will waste 5-10 s

    .this is my problem.

    #103415
    ljx0517
    Member

    no yet.

    my data now in mysql

    i want use these data to make a new forum .

    now i choose bbpress

    but I’m afraid so many data will make bbpress slowly

    now only a select count(*) will waste 5-10 s

    .this is my problem.

    #103231

    @justin, That was a spam reply for checking email templates folder. There is nothing like that in bbPress.

    You need to check out the code where the mail is sent in the code. If there are filters (most likely the case), then you can use a small plugin to modify that or even make changes to the core file there.

    #98131

    @justin, That was a spam reply for checking email templates folder. There is nothing like that in bbPress.

    You need to check out the code where the mail is sent in the code. If there are filters (most likely the case), then you can use a small plugin to modify that or even make changes to the core file there.

    #98314

    What are you even asking if you already have that much data in bbPress?

    #103414

    What are you even asking if you already have that much data in bbPress?

    #103367

    In reply to: Wp and bbpress

    You don’t need deep integration for sharing user tables.

    You can share them by defining something like this in wp-config.php file

    define('CUSTOM_USER_TABLE','new_user_table');
    define('CUSTOM_USER_META_TABLE', 'new_usermeta_table');

    But I would suggest copying over the users in WordPress side and then telling bbPress to use WordPress tables.

    #98267

    In reply to: Wp and bbpress

    You don’t need deep integration for sharing user tables.

    You can share them by defining something like this in wp-config.php file

    define('CUSTOM_USER_TABLE','new_user_table');
    define('CUSTOM_USER_META_TABLE', 'new_usermeta_table');

    But I would suggest copying over the users in WordPress side and then telling bbPress to use WordPress tables.

    #98313
    ljx0517
    Member

    can anybody help me~

    #103413
    ljx0517
    Member

    can anybody help me~

    #36515
    ljx0517
    Member

    now i hava a forum,the forum has 4,000,000 data,in bbpress i saw all data is in database table bb_posts ,i want to know is bbpress can carry it,

    i like bbpress ,i want to use bbpress.

    #103349
    cshively
    Member

    Thanks, man. I did add and activate the “bbPress integration” plugin and am still having the same issue…how about you Paul, are you still having this issue too?

    #98249
    cshively
    Member

    Thanks, man. I did add and activate the “bbPress integration” plugin and am still having the same issue…how about you Paul, are you still having this issue too?

    #94744
    Rich Pedley
    Member

    I’ll update as soon as I can then ;)

    thanks.

    #94743

    Reply page now only shows one reply. Still probably needs some tuning, but at least it’s less confusing now. :)

    #36508
    Jaja..
    Member

    I have made a front-page where i show off all latest topics matching the forum ID’s..

    It looks like this.

    Forum id = General questions -> latest topics of the general questions

    Forum id = Support questions -> latest topics of the support questions

    I did this by hiding or deleting the forum id’s from all others and repeat the latest topics section.

    Like this.

    <table id=”latest” role=”main”>

    <tr>

    <th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <!– <th><?php _e(‘Voices’); ?></th> –>

    <th><?php _e(‘Last Poster’); ?></th>

    </tr>

    <?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big><?php topic_page_links(); ?></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”num”><?php topic_last_poster(); ?></td>

    </tr>

    <?php endforeach; endif; ?>

    <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>

    <?php if( $topic->forum_id != 4 ) { ?>

    <?php if( $topic->forum_id != 5 ) { ?>

    <?php if( $topic->forum_id != 6 ) { ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></td>

    <td class=”counter”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”last-post-avatar”><?php echo bb_get_avatar( $topic->topic_last_poster , ’36’); ?></td>

    </tr>

    <?php } ?>

    <?php } ?>

    <?php } ?>

    <?php endforeach; endif; ?>

    </table>

    <table id=”latest” role=”main”>

    <tr>

    <th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <!– <th><?php _e(‘Voices’); ?></th> –>

    <th><?php _e(‘Last Poster’); ?></th>

    </tr>

    <?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big><?php topic_page_links(); ?></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”num”><?php topic_last_poster(); ?></td>

    </tr>

    <?php endforeach; endif; ?>

    <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>

    <?php if( $topic->forum_id != 3 ) { ?>

    <?php if( $topic->forum_id != 4 ) { ?>

    <?php if( $topic->forum_id != 6 ) { ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></td>

    <td class=”counter”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”last-post-avatar”><?php echo bb_get_avatar( $topic->topic_last_poster , ’36’); ?></td>

    </tr>

    <?php } ?>

    <?php } ?>

    <?php } ?>

    <?php endforeach; endif; ?>

    </table>’

    But know i have a problem with using this plugin.

    http://bbpress.org/plugins/topic/front-page-topics/

    I only want to show the latest 5 topics of each forum ID (excluding the once i’m hiding)

    Know with this plugin it also counts the topics i’m hiding..

    Isn’t there some code that says: show only the latest 5 topics from forum ID 3

    Thanks,

    #94742
    Rich Pedley
    Member

    oh.. that makes sense, so the page is only supposed to show 1 individual reply, not all of them! No wonder I couldn’t figure out what was going on!

    Ok that isn’t so alien to me then ;)

    #94741
    citizenkeith
    Participant

    Still alien to me, you see all the replies, but you don’t see the original post!

    Well, yes… that is annoying. A link to an individual post is great and useful. The weird behavior that’s in your test install isn’t quite right.

    #94740
    Rich Pedley
    Member

    Still alien to me, you see all the replies, but you don’t see the original post!

    #94739
    citizenkeith
    Participant

    this is something that other forum software has had for years and something we can do pretty easily.

    Yes, this is something I’ve wanted in bbPress… in my install of 0.9.0.6, I edited my CSS file so that I can at least have posts numbered… it’s easy to say “See post number 24” rather than cut and paste or re-explain something in a topic. Glad to see this functionality in the plugin.

Viewing 25 results - 40,151 through 40,175 (of 64,532 total)
Skip to toolbar