forum not show proper way
Quote from harish on November 2, 2017, 5:02 pmi am new in forum
please help me to view in full mode
in my forum it shown in half right side
thanks & regards
harish sachdeva
i am new in forum
please help me to view in full mode
in my forum it shown in half right side
thanks & regards
harish sachdevaUploaded files:
Quote from 风起云落 on November 2, 2017, 5:53 pmI think you can do this:
1. Copy your page.php file
2. Rename to forum.php
3. Create a new page, select the template for the forum
3. The code is modified as follows<?php /* template name: FORUM description: template */ get_header(); ?> <div class="pagewrapper clearfix"><!-- save your page.php first div --> <?php while (have_posts()) : the_post(); ?> <div class="article-content"> <?php the_content(); ?> </div> <?php comments_template('', true); endwhile; ?> </div> <?php get_footer(); ?>try it !
I think you can do this:
1. Copy your page.php file
2. Rename to forum.php
3. Create a new page, select the template for the forum
3. The code is modified as follows
<?php /* template name: FORUM description: template */ get_header(); ?> <div class="pagewrapper clearfix"><!-- save your page.php first div --> <?php while (have_posts()) : the_post(); ?> <div class="article-content"> <?php the_content(); ?> </div> <?php comments_template('', true); endwhile; ?> </div> <?php get_footer(); ?>
try it !
Quote from Asgaros on November 2, 2017, 6:34 pmHello harish,
风起云落 already gave you a little example on how to modify your theme to show it with full-width. Maybe you can check if your theme also already offers a build-in configuration option for this because I cant change this behavior directly in the forum-plugin because its caused by your WordPress theme.
Hello harish,
风起云落 already gave you a little example on how to modify your theme to show it with full-width. Maybe you can check if your theme also already offers a build-in configuration option for this because I cant change this behavior directly in the forum-plugin because its caused by your WordPress theme.