Hello,
This is still an issue on WC 2.6.4. I want 3 columns but is not filling the entire width of the page.
I tried removing those lines but the one in the second gist doesn’t exists anymore.
Thanks in advance
That worked perfect man!!!!
I’m very thankful!
I tried adding the page-attributes support but the template option isn’t available
So I came back with the answer:
<?php
query_posts('showposts=8');
$ids = array();
while (have_posts()) : the_post();
$ids[] = get_the_ID();
the_title();
the_content();
endwhile;
?>
and then:
<?php
query_posts(array('post__not_in' => $ids));
while (have_posts()) : the_post();
the_title();
the_content();
endwhile;
?>
Source: Smashing Magazine