bbPress

Simple, fast, elegant

bbPress Plugin Browser »

Bbpress Latest Discussion (1.6.4)

Download

Version: 1.6.4

Other Versions

Last Updated: 2009-12-2

Requires bbPress Version: 2.0.5 or higher

Compatible up to: 2.9

Author Homepage »

Plugin Homepage »

Donate to this plugin »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(23)

Your Rating

Author: Atsutane Shirane


  1. Do you need Wordpress in order to use this plugin? I tried using it, and I don't use Wordpress on my forum web site. It gave me an error when I tried activating the plugin.

    Posted: 2 years ago #
  2. affacat

    Member

    does this plugin still work for wp2.5/bbpress 0.9.1?

    Posted: 1 year ago #
  3. Anda barbaro esto!
    Muchas Gracias

    se puede ver en funcionamiento en http://www.argentinoZ.com

    nice dude!!

    working correctly at http://www.argentinoZ.com

    Regards from Argentina!

    Posted: 1 year ago #
  4. gerikg

    Member

    It's a WordPress widget to display the Latest Discussion of BBPress

    Posted: 1 year ago #
  5. Is it working with WordPress Mu?

    Posted: 1 year ago #
  6. great plugin thanx.

    Posted: 1 year ago #
  7. Hello,

    I have a website wp running on root and bbpress on /forum.

    I like to have latest topics on my wp front page, on the sidebar.

    I have tried to use this plugin but can't have it activated !?! There is a problem and does not activate.

    As I understand, I have to make changes here:

    function bbld_install() {
    if (get_option('wpbb_status') == FALSE) {
    $bbpath = '/bbpress'; // Adjust the path to suit your bbpress location. Example: '/forums'
    $wpbburl = get_settings('home') . $bbpath;
    update_option('wpbb_path', $wpbburl);
    $forum_slimit = '10'; // Adjust the limit to show
    update_option('wpbb_limit', $forum_slimit);
    $bbdb_prefix = 'bb_'; // Set Bbpress Prefix
    update_option('wpbb_bbprefix', $bbdb_prefix);
    $limit = '100';
    update_option('wpbb_slimit', $limit);
    update_option('wpbb_permalink', false);
    update_option('wpbb_intergrated', false);
    update_option('wpbb_exdb', false);
    update_option('wpbb_dbuser', DB_USER);
    update_option('wpbb_dbpass', DB_PASSWORD);
    update_option('wpbb_dbname', DB_NAME);
    update_option('wpbb_dbhost', DB_HOST);
    $install_status = 'install';
    update_option('wpbb_status', $install_status);
    update_option('wpbb_lastposter', true);
    update_option('wpbb_inside', true);
    }
    }

    ### Function: Add Option Page
    add_action('admin_menu', 'wpbb_add_pages');
    function wpbb_add_pages() {
    add_options_page(__("BBpress Latest Discussions Option"), __('BbLD Option'), 8, __FILE__, 'wp_bb_option');
    }

    ### Function: Trim some text
    function wpbb_trim($paragraph, $limit) {
    $original = strlen($paragraph);
    if ($original > $limit) {
    $text = substr($paragraph, 0, $limit) . " [...]";
    }
    else {
    $text = $paragraph;
    }
    return $text;
    }

    ### Function: BBpress Latest Discussions Option
    function wp_bb_option() {
    global $wpdb,$BbLD_version;
    $ori_url = $_SERVER['REQUEST_URI'];
    if ($_POST['wpbb_save']){
    $test = $_POST['bburl'];
    update_option('wpbb_path', $test);
    update_option('wpbb_slimit', $_POST['bbslimit']);
    update_option('wpbb_limit', $_POST['bblimit']);
    update_option('wpbb_permalink', $_POST['wpbb_permalink']);
    update_option('wpbb_intergrated', $_POST['wpbb_intergrated']);
    update_option('wpbb_bbprefix', $_POST['bbprefix']);
    update_option('wpbb_exdb', $_POST['use_outdb']);
    update_option('wpbb_dbuser', $_POST['bbuser']);
    update_option('wpbb_dbpass', $_POST['bbpass']);
    update_option('wpbb_dbname', $_POST['bbname']);
    update_option('wpbb_dbhost', $_POST['bbhost']);
    update_option('wpbb_lastposter', $_POST['wpbb_lastposter']);
    update_option('wpbb_inside', $_POST['wpbb_inside']);
    update_option('wpbb_exclude', $_POST['wpbb_exclude']);
    $update_msg = "<div id='message' class='updated fade'><p>BBpress Latest Discussions options saved successfully.</p></div>";
    }

    But when I enter all the necessary info here, the plugin does not work?!!

    Can someone please help? I am using wordpress 2.3.3 and bbpress 8.3 version.

    Posted: 1 year ago #
  8. I forgot to mention that, bbpress and wp are separate and have different databases.

    Website: http://www.Trabzonspor.mobi

    Posted: 1 year ago #
  9. Is this ever going to be updated to work with bbpress 0.9.x.x? I would really like to use this!

    Posted: 1 year ago #
  10. so it looks like this works just fine with .0.9.0.2 great mod!

    Posted: 1 year ago #
  11. pilola

    Member

    As mentioned earlier swedish characters å ä ö Å Ä Ö don't work. Is there any way to edit the plugin to get this to work?

    Posted: 1 year ago #
  12. Great work, thank you!

    I seems to have one bug, it also shows deleted topics.

    Regards
    Michael

    Posted: 1 year ago #
  13. alfandango

    Member

    Thanks for this. Got it working straight away :)

    Posted: 1 year ago #
  14. Thanks for the great work on this! Will have to look into customization later.

    Posted: 1 year ago #
  15. Awesome. This is exactly what I was looking for.

    Posted: 1 year ago #
  16. moderntimes

    Member

    Can't get this to display anything in bb 1.0-Alpha-6 integrated with WP 2.7 (same database). Anyone else having any luck?

    Posted: 1 year ago #
  17. Hi, this plugin displays latest discussions form the forum with URLs like domain.com/forum/topic/1 when pretty permalinks is checked. For seo purposes when slugs are used in bbpress discussions it should link to the URL with the slug like domain.com/forum/topic/first-topic.

    Are there any ways to fix this?

    Posted: 1 year ago #
  18. Thank you!

    Posted: 1 year ago #
  19. Ahhh, brilliant, works like a charm - using WP 2.7.1 and BBP 0.9.0.4. Great work!

    Posted: 1 year ago #
  20. I need something like this, but in a code that I can drop anywhere. I don't use wordpress for my website, only bbpress for the forum. Can anybody help me? Thanks!

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment »

You must log in to post.

Code is Poetry.