Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 38,926 through 38,950 (of 64,532 total)
  • Author
    Search Results
  • #99660
    ePilipovic
    Member

    Hello,

    I tried this but the forum didn’t show up ony header and footer.

    thanks

    #104759
    alexchenco
    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    #99659
    alexchenco
    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    #37645
    ePilipovic
    Member

    How can i add a custom page on wordpress theme with bbPress? Is there any function to call?

    example link: http://img34.imageshack.us/img34/9774/bbpress.png

    <?php

    /*

    Template Name: Forum

    */

    /**

    * @package WordPress

    * @subpackage Default_Theme

    */

    get_header(); ?>

    —->>> What to put here to show my bbPress forum?

    <?php get_footer(); ?>

    #104736
    panosbax
    Member

    the only problem it seems is that i simply dont have “auth_salt” and “logged_in_salt” in my wp-admin/config.php in WordPress. which means I can’t add those values in integration which is why it wont stay logged on across WP/ bbpress. Can anyone explain what to do :/ or why it’s not there?

    #99636
    panosbax
    Member

    the only problem it seems is that i simply dont have “auth_salt” and “logged_in_salt” in my wp-admin/config.php in WordPress. which means I can’t add those values in integration which is why it wont stay logged on across WP/ bbpress. Can anyone explain what to do :/ or why it’s not there?

    #101416

    In reply to: Design Saga

    That’s awesome. I’m new to bbpress. How long did it take you to design the forum?

    Also, does anyone know how to upload a profile pic? I hate being a snow man.

    Steve

    #96316

    In reply to: Design Saga

    That’s awesome. I’m new to bbpress. How long did it take you to design the forum?

    Also, does anyone know how to upload a profile pic? I hate being a snow man.

    Steve

    #95031
    Anonymous User 7670885
    Inactive

    Some report: branches_plugin-2949

    1) If i use a forum as category and a sub forum as forum the category name is click-able and when i click on it i receive: This forum contains 0 topics and 0 replies (instead it contain a real forum with topics).

    2) If i disable “Prefix the root slug before the following slugs?” i receive all 404 on sub-pages forum (like stats, recent, newest) – yes, i’ve resaved permalink.

    3) Login meta link do not work (it point to “login” instead to point to: “wp-login.php”)

    #95030
    christofian
    Member

    Could someone take the time to look at this bug: https://trac.bbpress.org/ticket/1476

    ePilipovic
    Member

    Hello,

    Is there anyway that i add a link to my navigation bar with bbPress that’s opening in the same page like wordpress with sidebars and all other things around.

    Example link:

    http://img34.imageshack.us/img34/9774/bbpress.png

    #95029
    Alexqw
    Member

    Hey,

    I’m a newcomer here, but I’ve spent more than a few hours reading over the forums to get a feel for the community and understand the entire bbPress-plugin saga. I really appreciate all of the work that JJJ is putting into this and I’m excited about the future of this. I know there is some skepticism in the community, but just from looking over the amount of work JJJ has put into this, I think bbPress-plugin has a bright future.

    I am willing to help out and hopefully will have time soon to jump on IRC and start hacking.

    —Alex

    #104384
    nim_design
    Member
    #99284
    nim_design
    Member
    #51943

    In reply to: Language

    nim_design
    Member
    #50402
    uxtremist
    Member

    WP 3.0 / BBpress “Bechet” version 1.0.2

    Inside /wp-includes/load.php I found this code:

    // If already slashed, strip.
    if ( get_magic_quotes_gpc() ) {
    $_GET = stripslashes_deep( $_GET );
    $_POST = stripslashes_deep( $_POST );
    $_COOKIE = stripslashes_deep( $_COOKIE );
    }

    So I made a BBpress plugin that (so far) works for me.

    /bbpress/my-plugins/stripslashes.php

    <?php
    /*
    Plugin Name: Strip Slashes
    Plugin URI: http://www.uxtremist.com/
    Description: Strips slashes from topics, tags and posts. Sort of.
    Author: Adam Braimbridge <adam@uxtremist.com>
    Version: 0.1
    Author URI: http://www.uxtremist.com/
    */

    // Make sure WordPress has been included
    if (function_exists('wp_head')) {
    $_GET = stripslashes_deep( $_GET );
    $_POST = stripslashes_deep( $_POST );
    $_COOKIE = stripslashes_deep( $_COOKIE );
    }
    ?>

    #104753

    In reply to: Password Protection

    mr_pelle
    Participant
    #99653

    In reply to: Password Protection

    mr_pelle
    Participant
    alexchenco
    Member

    I would like to know how to start a custom bbPress loop to display the recent 5 posts of a certain forum (say Forum Test 1).

    In WordPress I create custom loops like this:

    `<?php $custom_posts = new WP_Query(); ?>

    <?php $custom_posts->query(‘post_type=bbp_topic&posts_per_page=5’); ?>

    <?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>

    <div class=”block-2 border-top”>

    <h2><a href=”<?php the_permalink(); ?>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></a></h2>

    <?php the_excerpt(); ?>

    <p><?php comments_number(‘0 Replies’,’1 Reply’,’% Replies’); ?>.</p>

    </div>

    <?php endwhile; ?>`

    How to do what I mentioned above in bbPress 1.1?

    #37630
    amylove
    Member

    I’m trying to make the access to the bbPress password protected. Is there a way to keep the forum from showing unless a user is logged in? I have a protected page that redirects to bbPress, but the actual URL to bbPress can be accessed directly.

    I’m not a PHP programmer so any info would be much appreciated!

    #64036
    sontru
    Participant

    Hey! I’ve now fixed my problem :)

    The system (Debian 6) was missing or had an old version of php5-gd installed. apt-get install php5-gd and restarting the apache2 server fixed the problem of the blank pages.

    Also these code changes by _ck_ helped to improve Avatar Upload:

    Delete avatar function: https://bbpress.org/plugins/topic/avatar-upload/page/5/#post-1093

    Make identicon function work: https://bbpress.org/plugins/topic/avatar-upload/page/5/#post-1096

    #104302

    In reply to: WPMimic V.1

    CNLee123
    Member

    What version of bbPress are u running? This theme isn’t tested on any version early than version 1.

    Also, if you try to register with the email address tt@kk, it’ll tell you that the email address is invalid. Or if you’re using an email that already exist in your database then that wont work either…

    I tested everything in my site, and everything seems to be just fine.

    you can test it out yourself on my site if you want…

    http://www.mynflshops.com

    #99202

    In reply to: WPMimic V.1

    CNLee123
    Member

    What version of bbPress are u running? This theme isn’t tested on any version early than version 1.

    Also, if you try to register with the email address tt@kk, it’ll tell you that the email address is invalid. Or if you’re using an email that already exist in your database then that wont work either…

    I tested everything in my site, and everything seems to be just fine.

    you can test it out yourself on my site if you want…

    http://www.mynflshops.com

    #95028
    Anonymous User 7670885
    Inactive

    @Willabee: thank’u very much (and sorry for my poor english) :)

    for n° 2 (i can try to best explain): if i have a theme in my blog (no twentyten) how i can use also for plugin? is there a guide for customize? atm i can use only bbPress (Twenty Ten)

    #95027
    Willabee
    Member

    @ Darkwolf.it

    1. A category can’t hold topics, its meant to only be a container of sub-fora.

    2. Don’t really know what you mean..

    3. Making a custom theme for a plugin, seems like a long shot. Especially since it won’t intergrate into your site and just takes it over.

    4. It’s in the settings (Settings > Forums).

    5. None yet, but since the topics are just custom posts, you could write up a script.

    6. As said many times before, it has a high priority, but don’t expect it to be done tommorow.

    @ Kasparas

    This topic is about all the info you’ll get. The plugin will be the same as the standard bbPress in the end.

    @ ALL

    I know all of you have been waiting for a good forum plugin for wordpress for a while, but don’t ask radical script changes or widgets in this stage. Just let them build a solid script and the custom stuff will come later.

Viewing 25 results - 38,926 through 38,950 (of 64,532 total)
Skip to toolbar