Hi there,
Not sure where that trailing sidebar comes from :
http://www.slate.com/blogs/bad_astronom ... _gain.html
and where to disable it
It's from woocommerce.
Cyberek wrote:Could You please post a screenshot of that "trailing sidebar"?
Cyberek wrote:Does it also happens on our demo themes?
Or in other words... What would I need to do step by step to replicate this problem? (beside installing fest from QuickStart)
<?php
/**
*
* Woocommerce Page
*
**/
global $tpl;
gk_load('header');
gk_load('before');
?>
<section id="gk-mainbody">
<?php do_action('woocommerce_before_main_content'); ?>
<?php woocommerce_content(); ?>
<?php do_action('woocommerce_after_main_content'); ?>
</section>
<?php
gk_load('after');
gk_load('footer');
// EOF
<?php
/**
*
* Woocommerce Page
*
**/
global $tpl;
$fullwidth = true;
gk_load('header');
gk_load('before', null, array('sidebar' => false));
?>
<section id="gk-mainbody">
<?php do_action('woocommerce_before_main_content'); ?>
<?php woocommerce_content(); ?>
<?php do_action('woocommerce_after_main_content'); ?>
</section>
<?php
gk_load('after', null, array('sidebar' => false));
gk_load('footer');
// EOF