Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author WebberZone

    (@webberzone)

    That will depend on what theme your running. The KB articles are just displayed using your standard post view of your theme.

    Thread Starter Tommyfoxy2

    (@tommyfoxy2)

    My theme is smartline lite.

    Id like to remove the sidebar somehow even if i needed another plugin.

    Or at least be able to change what sidebar is displayed/used.

    If there any php/ccs i can use to remove the sidebar and make it full width you think?

    Plugin Author WebberZone

    (@webberzone)

    Thread Starter Tommyfoxy2

    (@tommyfoxy2)

    Yes

    Plugin Author WebberZone

    (@webberzone)

    Hi Tommy, I looked at the theme and I am not completely familiar with it. It does a template-fullwidth.php which I think displays pages in full width.

    You could try to duplicate this and then change the name to: single-wz_knowledgebase.php

    Thread Starter Tommyfoxy2

    (@tommyfoxy2)

    Tried and it didn’t work

    Plugin Author WebberZone

    (@webberzone)

    Another option worth trying is (with the same filename as above)

    <?php get_header(); ?>
    
    	<div id="wrap" class="clearfix template-fullwidth">
    
    		<section id="content-full" class="primary" role="main">
    
    		<?php if (have_posts()) : while (have_posts()) : the_post();
    
    			get_template_part( 'content', 'single' );
    
    			endwhile;
    
    		endif; ?>
    
    		<?php comments_template(); ?>
    
    		</section>
    			</div>
    
    <?php get_footer(); ?>
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Full width article page’ is closed to new replies.