Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 61,501 through 61,525 (of 64,414 total)
  • Author
    Search Results
  • #1785
    wittmania
    Member

    Version 1.0

    This plugin automatically turns scripture references into links that will take the visitor to BibleGateway.com, where they can view the verse(s). The administrator can set the default version to one of more than a dozen available versions, including ESV, NIV, KJV, NASB, The Message, and so on.

    The links are created dynamically each time a topic is loaded, so the actual text of the post is left alone. This is nice because it allows you to disable/delete the plugin without having to go back through and edit your posts to remove the extra markup.

    This plugin is ideal for forums that are religious/spiritual in nature, as it will save your users a lot of time from having to hard-code links to passages they reference in their posts.

    This plugin is almost entirely based on a similar WordPress plugin that does the same thing to WP posts. You can view the WP plugin here:

    http://dev.wp-plugins.org/wiki/Scripturizer

    You can read more about the plugin, or download the latest version of bb-Scripture-Links, here:

    http://blog.wittmania.com/bb-scripture-links

    You can see a working demo here:

    http://blog.wittmania.com/bbpress/topic/2

    #56960
    fel64
    Member

    Why don’t you copy the code here or upload and link to it? If anyone’s interested they can modify it then.

    #52911
    citizenkeith
    Participant

    Did you put BOTH database tables and such in the SAME database? Like I said above here?

    Yes, just like that, although I am not integrating my WP with bbPress.

    As far as I know, you would only need to do what’s on this page right? Since we’re not talking about WP here at all?

    That’s correct. That’s what I’ve been trying to figure out… I’m following those directions, but I still get these errors.

    Sorry if I’m not much help.. :(

    Not a problem! I appreciate your efforts.

    #55000
    Null
    Member

    internet frustration :D

    #54999
    wmarcy
    Member

    I kinda like the theme, but don’t get the attitude, unless it is some ‘lost in the internet’ translation problem I am having.

    #56959
    Vili
    Participant

    I have modified Dan’s Avatar Thingy to work on both WordPress and bbPress (the avatar is set in the WordPress user interface). It’s really rather easy to do.

    I actually also modified the plugin so that instead of always resizing an image to a certain size, it instead checks that the image is not bigger than X*Y, and only acts if it is.

    Tell me, if you are interested, and I can e-mail you the source for my modified Avatar Thingy. Note, though, that I made the modifications with my own website in mind, so it isn’t really an “out-of-the-box” solution, and you will most certainly need to do some coding to get it work for you (much depends on how exactly your bbPress is intergrated with WordPress).

    #54998
    spencerp
    Member

    Screw it, Trent…can you delete this thread for me man? If you want copy of it Trent, and then release it … go ahead man. I’ll send ya a zip or tar to your email addy then. ;) :)

    spencerp

    #52910
    spencerp
    Member

    Sorry, my mind is waaay off here. I just have so much crap going through it on a daily basis it’s not funny sigh. Sorry if I’m not much help.. :(

    spencerp

    #52909
    spencerp
    Member

    Did you put BOTH database tables and such in the SAME database? Like I said above here?

    If you want, and IF I can find the stuff I had before.. I’ll post it back here. As for the stuff you’re talking about above there… couldn’t ya just change the references from WP database calls to bbPress calls?

    As far as I know, you would only need to do what’s on this page right? Since we’re not talking about WP here at all?

    https://codex.wordpress.org/User:RobLa/bbPress_Auth_for_MediaWiki

    spencerp

    #57108
    cpjolicoeur
    Member

    ttt

    i am wondering the same thing. i am running wp-phpmailer on my blog and have integrated bbpress just today. i want to use phpmailer for the bbpress email as well but it doesnt seem to be working

    #57224
    smurfdude
    Member

    I get this error on my comments page

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘wp_bbpress_post_posts WHERE post_id =]

    SELECT topic_id FROM wp_bbpress_post_posts WHERE post_id = 32 LIMIT 1;

    #1794
    fel64
    Member

    Wanting to integrate bb and wp more, I hacked up wp’s comments.php template to get replies in the forum to show up below posts in the wp section of the site too.

    This currently requires the bbPress Post plugin.

    Fairly simple job: find the corresponding topic, get the replies, and output them. My solution should work for you, too, if you have bbPress post installed and activated as a wp plugin. Code’s below.

    I want to make it possible to reply to the topic from the wp section of the site if you’re logged in. Obviously I could make queries to insert the post into the database, but I’d like to use the bb API so it can be validated correctly, hooks are called etc. Not sure how I would go about making it accessible. Currently calling any bb functions returns the “undefined function” error; how can I make them available for use?

    Paste this in front of the rest of your wp comments.php template:

    <?php
    function felblogtotopicid( $felpostID ) {
    global $table_prefix, $wpdb;
    $posts_table = $table_prefix . "bbpress_post_posts";
    $topic_id = $wpdb->get_var("SELECT topic_id FROM <code.>$posts_table</.code> WHERE <.code>post_id</.code> = $felpostID LIMIT 1;");
    return $topic_id;
    }
    global $post, $wpdb;
    if( $forumtopic = felblogtotopicid( $post->ID ) ) {
    $bbprefix = get_option( 'wpbb_bbprefix' );
    $replies = $wpdb->get_results( '
    SELECT poster_id, post_text, post_time
    FROM ' . $bbprefix . 'posts
    WHERE topic_id = ' . $forumtopic
    );
    array_shift( $replies ); //takes off first entry, ie. starting post, and moves the rest back one
    //$replies = array of object( poster_id, post_text, post_time ) for each post I think
    echo "<ol>n"; //start of list
    foreach( $replies as $reply ) {
    $poster = get_userdata( $reply->poster_id );
    $poster = $poster->user_login;
    echo '<li class="thread">' . "n"
    . '<div class="reply">' . "n"
    . '<div class="poster">' . "n"
    . "<strong>" . $poster . "</strong>n"
    . "<span> @ " . $reply->post_time . "</span>n"
    . "</div>n"
    . '<div class="post">' . "n"
    . $reply->post_text
    . "</div>n"
    . "</div>n"
    . "</li>n";
    }
    echo "</ol>n"; //end of list
    //$replylink = bb_add_replies_to_topic_link( $forumtopic );
    $replylink = get_option( 'wpbb_path' );
    echo '<h3><a href="' . $replylink . '">Reply!</a></h3>' . "n";

    } else { ?>

    and paste this at the very back:

    <?php } //end else conditional for corresponding topic to blogpost ?>

    Example here

    #55707
    kernow
    Member

    fel64 wrote: How did you make it work?

    Its easy to install really. You have the main tinymce folder which I opened and uploaded the contents to the ‘my-plugins’ folder. This is the mistake I made.

    • Just upload the jscript folder within the tinymce folder to my-plugins
    • Edit header.php in your bbpress template, adding the reference to the javascript

    This is part of the code which I copied, which you put before the </head> closing tag in header.php.

    <script language=”javascript” type=”text/javascript” src=”http://example.com/bbpress/my-plugins/jscripts/tiny_mce/tiny_mce.js”></script&gt;

    Change to:

    <script language=”javascript” type=”text/javascript” src=”my-plugins/jscripts/tiny_mce/tiny_mce.js”></script>

    The FULL code you put in header php is the top of the page, but this bit is important.

    #1792
    smurfdude
    Member

    I have my forum integrated with wordpress, and all was working fine in both firefox and IE until i turned permalinks on in wordpress only. I emphasize, wordpress only, i’m not using pretty urls in bbpress.

    This is where the odd behaviour starts. My blog works perfectly, permalinks work fine, and my forum works fine in firefox. However, when using permalinks in wordpress, i get “page cannot be found” error in IE7 when trying to browse the forum.

    I’m totally stumped. My server supports permalinks, it works perfectly in firefox, wordpress works in IE7, and bbpress works in IE7 with permalinks off in wordpress. But with them turned on… page not found. What the hell?

    #57219
    cpjolicoeur
    Member

    so, I looked in the bb-templates/kakumei/post-form.php file and it is completely blank???

    is this correct or should there be an edit form in this file?? This is the default theme included in the bbpress installation and i havent edited the file at all

    cpjolicoeur
    Member

    I posted earlier in this thread: http://bbpress.org/forums/topic/787

    but i see it is marked as [Resolved] so people probably arent reading it.

    I just freshly installed bbPress and after the install and setup I am unable to add a new topic or reply to existing topics. There is no link to add new topics/reply/etc…

    The prior thread said it could be due to mod_rewrite, so I deleted my .htaccess file and turned mod_rewrite off in my config file and it still isnt working.

    Any ideas? The link for the forum is http://www.mmahq.com/forums/

    #57215
    fel64
    Member

    Ahh, that’ll teach me to remember the difference between get_bbpress_thing() and bbpress_thing(). >_< Sorry.

    Replace the code in there now with this.

    Set the last parameter to true if you want it to return an array of information. To use this you would use code like this:

    <?php $mytopicnavarray = feltopicnav( '', '', ' ', true, true );
    echo '<a href="' . $mytopicnavarray['next']['link'] . '">Click here to go to the next topic!</a>'; ?>

    Use <?php felforumnav(); ?> to get the forum navigation in a similar way to the topic navigation. It’s just a simple wrapper for what feltopicnav does, but it’s a bit easier to see what it’s supposed to do. Check the code for possible parameters.

    I won’t submit this as a proper plugin because the code is awkward. Maybe sometime I’ll recode it or someone else will. :)

    <?php
    /*
    Plugin Name: Topic Navs;
    Plugin URI:
    Description: Put <?php feltopicnav(); ?> in a topic template to show links to the previous and next topics, and put in <?php felforumnav(); ?> to get basic next/previous forum navigation. More parameters such as $infoonly available.
    Author: fel64
    Version: 0.7
    Author URI: http://www.loinhead.net/
    */

    function feltopicnav( $nexttext = '', $prevtext = '', $betweentext = ' ', $lastpost = true, $infoonly = false, $forumnav = false; )
    {
    global $topic_id;
    $nexttopic = $topic_id + 1;
    $prevtopic = $topic_id - 1;
    global $forum_id;
    $nextforum = $forum_id + 1;
    $prevforum = $forum_id - 1;
    if( !$nexttext )
    if( !$forumnav ) {
    $nexttext = get_topic_title( $nexttopic );
    } else {
    $nexttext = get_forum_name( $nextforum );
    }
    if( !$prevtext )
    if( !$forumnav ) {
    $prevtext = get_topic_title( $prevtopic );
    } else {
    $prevtext = get_forum_name( $prevforum );
    }
    $prevtext = get_topic_title( $prevtopic );
    if( $lastpost ) {
    $nextlink = get_topic_last_post_link( $nexttopic );
    $prevlink = get_topic_last_post_link( $prevtopic );
    } else {
    if( !$forumnav ) {
    $nextlink = get_topic_link( $nexttopic );
    $prevlink = get_topic_link( $prevtopic );
    } else {
    $nextlink = get_forum_link( $nextforum );
    $prevlink = get_forum_link( $prevforum );
    }
    }
    if( $infoonly ) {
    $topicnavinfo['next']['title'] = $nexttext;
    $topicnavinfo['next']['link'] = $nextlink;
    $topicnavinfo['prev']['title'] = $prevtext;
    $topicnavinfo['prev']['link'] = $prevlink;
    return $topicnavinfo;
    } else {
    echo '<a href="' . $prevlink . '"> &laquo; ' . $prevtext . '</a>' . $betweentext . '<a href="' . $nextlink . '">' . $nexttext . ' &raquo; </a>';
    }
    }

    function felforumnav( $nexttext = '', $prevtext = '', $betweentext = ' ', $infoonly = false )
    {
    $fni = feltopicnav( $nexttext, $prevtext, $betweentext, false, true, true );
    if( $infoonly ) {
    return $fni;
    } else
    echo '<a href="' . $fni['prev']['link'] . '"> &laquo; ' . $fni['prev']['title'] . '</a>' . $betweentext . '<a href="' . $fni['next']['link'] . '"> &laquo; ' . $fni['next']['title'] . '</a>';
    }
    }
    ?>

    #55706
    fel64
    Member

    How did you make it work?

    #55705
    kernow
    Member

    Since my last post (panic?) I realised my mistake. It works OK now. Problem is the ‘guy who knows more than me’ is beginning to worry me now hmmm.

    #55704
    kernow
    Member

    Tried adding the TinyMCE to bbpress and it didn’t work. Asked a guy who knows more about this than I do, and he couldn’t get it to work either. Browsing for an answer, its suggested

    • a javascript conflict with a plugin
    • , or template.

    I’m using the latest version of WordPress in case there is a conflict there. (Windows hosting)

    #52908
    citizenkeith
    Participant

    bump :-)

    #57041
    palsys
    Member

    I am currently collecting themes and plugins and providing links at http://www.mybbpress.com. There isn’t a ton of selection out there right now, but I’ll be adding as they become available.

    #57107
    Sam Bauers
    Participant

    It’s GPL, but there is no indication of that anywhere here officially. There is a ticket to address this issue. https://trac.bbpress.org/ticket/642

    #55927

    In reply to: Show off your Forum !!

    Vili
    Participant

    Mine is at http://akirakurosawa.info/forums/ . I’ve done a little bit here and there, although more behind the scenes than with the theme.

    The installation is integrated with the rest of the site, which runs on WordPress. So much so, in fact, that I even ended up modifying a WordPress Avatar plugin so that I can use the same plugin for both WordPress and bbPress. (Although I don’t actually use it for the WordPress side at the moment.)

    The bbPress installation itself has the following plugins:

    – Allow images

    – Comment quicktags (with some modifications)

    – Display name (with some modifications)

    – Fix bbPress

    – Quote

    – WordPress Integration

    I’m adding things little by little as the users request new features.

    #55561

    In reply to: Hooks & Filters Docu

    eddd54
    Member

    hey, i found this link: http://timjoh.com/list-of-bbpress-template-functions/ yesterday – which has a list of all the template functions (up to 0.8.1).

    i was going to use that as a reference until bbpulp had more info –

    but now i see that the wiki has already begun to fill out..

    i guess i’m still a little confused by all the terminology, perhaps someone could help me by distiguishing between the following terms:

    – template functions

    – pluggable functions

    – plugin functions

    – filters (defined earlier)

    – hooks / actions (defined earlier)

    maybe all this could be included on the wiki too?

    anyway, the list of template functions might help since i see that no link has been created yet for it under the heading: “Theming documentation” on bbpulp.

Viewing 25 results - 61,501 through 61,525 (of 64,414 total)
Skip to toolbar