Filter and sidebar bug

Posted in: Newspaper
Post count: 16

Hello Radu & Marius,

First of all I would like to thank you for developing this great theme guys, great work!

I think there’s a bug with homepage loop filter and sidebar settings. When I enter a category ID(s) for Multiple categories filter, sidebar setting from dropdown is ignored and default sidebar is being called(If top category entry on the list has a sidebar assigned, then that on the homepage assigned category sidebar is being rendered).

http://imgur.com/UcVsr0I
http://imgur.com/LsrP8k0

The weird thing is if sidebar is on the left then it works correctly. So when I check page-homepage-loop.php:

If query_posts($queryPost); is called after <?php get_sidebar(); ?> we have this problem.

So can you think of a way to address this problem?

Post count: 16

at page-homepage-loop.php:
resetting query right before getting sidebar fixed it. Like the following:

 <div class="span4 column_container" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar">
                <?php 
                wp_reset_query();
                get_sidebar(); ?>
</div>
Post count: 1

Wow, I just stumbled into the same problem. I would be great if you could fix this.

Post count: 6600

Hi,

Glad you have managed to fix it and thanks for sharing!
Also tested this to make sure and you are right. Just added this on our todo list and we will try to fix this as soon as possible.

Thanks for reporting this!
Have a nice day!

Post count: 780

Omg… strange bug, I’m working to fix it.

Radu O.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.