alexchenco (@alexchenco)

Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

  • alexchenco
    Member

    @alexchenco

    I see. Thanks for replying. Keep the nice work guys!


    alexchenco
    Member

    @alexchenco

    I see. Thanks for replying. Keep the nice work guys!


    alexchenco
    Member

    @alexchenco

    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(); ?>


    alexchenco
    Member

    @alexchenco

    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(); ?>

    Hi guys, I have two questions (I think the first one is a bug).

    1. When I start a topic from the admin panel it doesn’t appear in the forums (and it doesn’t have voice). (I’m using WordPress 3.1 and bbPress 1.1 Alpha 2 downloaded from the link provided in this forum). Is this a normal behaviour? (Topics only appear in forums when I create them in the Create Topic page).

    2. Sorry if I didn’t see the post, you guys are doing an awesome job. When is the stable version of the plugin being released?

    Thanks in advance (I will be happy to report any bugs).

Viewing 5 replies - 1 through 5 (of 5 total)