Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 39,401 through 39,425 (of 64,515 total)
  • Author
    Search Results
  • #94908
    Rob Bunch
    Member

    Hi, I’m just looking for some quick advice. I’m launching a site for a nonprofit organization next week which needs a community forum…

    http://www.agrowingculture.org (it’s live now though)

    Do you think the pre-alpha version of the plugin is stable enough to go with it or should I just use stand alone version of bbPress and migrate later?

    Thanks in advance for any advice.

    #99232

    Integrating bbPress & WordPress is a lot easier than before.

    #104332

    Integrating bbPress & WordPress is a lot easier than before.

    #99228

    In reply to: bbpress AND buddypress

    Moderated.

    @jwindhall – You basically want shared user tables and nothing else, so follow the typical integration methods as if BuddyPress wasn’t in the picture.

    #104328

    In reply to: bbpress AND buddypress

    Moderated.

    @jwindhall – You basically want shared user tables and nothing else, so follow the typical integration methods as if BuddyPress wasn’t in the picture.

    #98997
    jaapmarcus
    Member

    Thats why it is also available on wordpress site

    https://wordpress.org/extend/plugins/bbpress-last-topics/

    #104097
    jaapmarcus
    Member

    Thats why it is also available on wordpress site

    https://wordpress.org/extend/plugins/bbpress-last-topics/

    #98996
    csabamarosi
    Member

    Aww man, sorry, I made a typo – now everything’s fine, thanks a lot!

    #104096
    csabamarosi
    Member

    Aww man, sorry, I made a typo – now everything’s fine, thanks a lot!

    #99224

    In reply to: bbpress AND buddypress

    jwindhall
    Member

    I’ve used “an existing installation”. Am I inccorect in saying that the above would only give me the default ONE BIG FORUM and not the full bbpress?

    #104324

    In reply to: bbpress AND buddypress

    jwindhall
    Member

    I’ve used “an existing installation”. Am I inccorect in saying that the above would only give me the default ONE BIG FORUM and not the full bbpress?

    #99180

    In reply to: WPMimic V.1

    Vietson
    Member

    @citizenkeith – thanks for the link. I started reading that thread a few days ago and find that the development kinda stop halfway. Although initially the progress is quite strong then it began to die down.

    Anyhow, WPMimic v.1 is ready. Visit: http://vietsonnguyen.com/beta/bbpress/

    Let me know how it in IE since I have no access to IE.

    #104280

    In reply to: WPMimic V.1

    Vietson
    Member

    @citizenkeith – thanks for the link. I started reading that thread a few days ago and find that the development kinda stop halfway. Although initially the progress is quite strong then it began to die down.

    Anyhow, WPMimic v.1 is ready. Visit: http://vietsonnguyen.com/beta/bbpress/

    Let me know how it in IE since I have no access to IE.

    #98995
    thebreiflabb
    Member

    It works perfectly for me, though you can try with some debugging, for example try

    echo $counter;

    inside the foreach loop to see if you have any loop at all. Check the source code if you have anything there.

    #104095
    thebreiflabb
    Member

    It works perfectly for me, though you can try with some debugging, for example try

    echo $counter;

    inside the foreach loop to see if you have any loop at all. Check the source code if you have anything there.

    #37371
    dhcrusoe
    Member

    Greetings all,

    Ok, so conceptually, bbPress seems great. However, I’ve used an older version, and know how tentative it can be.

    As I can’t find any readily-accessible information about this, I’m asking what might be one of the most frequent questions around here.

    Can someone please point out documentation that explains how to integrate WordPress with bbPress? I’m looking to integrate the theme and navigation ONLY – nothing else (since our WP site doesn’t require logins, etc).

    Thanks for any info,

    –Dave

    #98994
    csabamarosi
    Member

    I’ve figured out that there were some PHP configuration issues with my XAMPP installation, so the error messages are gone now. Sad thing is, your code doesn’t output anything at all.

    #104094
    csabamarosi
    Member

    I’ve figured out that there were some PHP configuration issues with my XAMPP installation, so the error messages are gone now. Sad thing is, your code doesn’t output anything at all.

    #98993
    thebreiflabb
    Member

    What errors does it give you?

    #104093
    thebreiflabb
    Member

    What errors does it give you?

    #98992
    csabamarosi
    Member

    Well, at first I was trying to do something very similar, but including bb-load.php always gives me errors. Deep integration and all database/cookie connections are working fine, so I’m pretty confused.

    #104092
    csabamarosi
    Member

    Well, at first I was trying to do something very similar, but including bb-load.php always gives me errors. Deep integration and all database/cookie connections are working fine, so I’m pretty confused.

    #98991
    thebreiflabb
    Member

    If your wordpress and bbpress share the same database you can simply edit sidebar.php

    On the top of the file add:

    <?php require_once(ABSPATH."/forum/bb-load.php"); ?>

    This will give you access to the bbpress functions. (Edit to the path of your bbpress installation)

    Then where you are going to output your latest posts add this:

    <?php
    global $wpdb;
    $query = "SELECT * FROM bbp_topics WHERE topic_status='0' ORDER BY topic_time DESC LIMIT 6";
    $topics = $wpdb->get_results($query);
    $counter = 0;
    ?>

    This will find the latest posts, I do it this way so it won’t show the same topic several times if many posts have been made in the same topic. Also edit bbp_ to your bbpress db prefix.

    Finally to output simply add something similar to this:

    <div id="latest-posts" class="border">
    <h2>Latest forum posts</h2>
    <?php foreach($topics as $topic) : ?>
    <div class="<?php echo $counter % 2 ? "gray" : "white"; ?>"><a href="<?php topic_last_post_link($topic->topic_id); ?>"><?php topic_title($post->topic_id); ?></a></div>
    <?php $counter++; ?>
    <?php endforeach; ?>
    </div>

    Edit to your preference on html and css.

    #104091
    thebreiflabb
    Member

    If your wordpress and bbpress share the same database you can simply edit sidebar.php

    On the top of the file add:

    <?php require_once(ABSPATH."/forum/bb-load.php"); ?>

    This will give you access to the bbpress functions. (Edit to the path of your bbpress installation)

    Then where you are going to output your latest posts add this:

    <?php
    global $wpdb;
    $query = "SELECT * FROM bbp_topics WHERE topic_status='0' ORDER BY topic_time DESC LIMIT 6";
    $topics = $wpdb->get_results($query);
    $counter = 0;
    ?>

    This will find the latest posts, I do it this way so it won’t show the same topic several times if many posts have been made in the same topic. Also edit bbp_ to your bbpress db prefix.

    Finally to output simply add something similar to this:

    <div id="latest-posts" class="border">
    <h2>Latest forum posts</h2>
    <?php foreach($topics as $topic) : ?>
    <div class="<?php echo $counter % 2 ? "gray" : "white"; ?>"><a href="<?php topic_last_post_link($topic->topic_id); ?>"><?php topic_title($post->topic_id); ?></a></div>
    <?php $counter++; ?>
    <?php endforeach; ?>
    </div>

    Edit to your preference on html and css.

    #99175
    thebreiflabb
    Member

    I made it work in a way using this:


    <?php
    /*
    Plugin Name: BBTexCode
    Description: [tex][/tex] to image
    Plugin URI:
    Author: Sondre Kjøniksen
    Version: 1.00
    */

    function bb_tex_replace( $text ) {
    $text = preg_replace('/[tex](.*?)[/tex]/ie', "'<img src="/cgi-bin/mathtex.cgi?'.rawurlencode('$1').'" align="middle" />'", $text);
    return $text;
    }
    add_filter('post_text', 'bb_tex_replace');
    ?>

    Though I still have a problem, it seems bbpress strips backslashes when adding the post to the DB. Is it possible to do so bbpress skips stripping backslashes from [tex][/tex] tags? At the moment it works if I write double backslashes like: [tex]\LaTeX \frac12[/tex] But it is kind of annyoing having to type double every time.

Viewing 25 results - 39,401 through 39,425 (of 64,515 total)
Skip to toolbar