Sorry I couldn’t try during the weekend.
wp_reset_query() doesn’t fix it, removing one of the template classes does. I guess a JS function is messing with it.
I set my featured as front page, and it works fine there.
Thanks anyway 🙂
Sure. But it turns out that there is conflict with my custom template. Nothing wrong on the plugin’s side.
This is the relevant piece.
<div class="container">
<!-- FEATURED FILTERING -->
<?php query_posts($query_string."&posts_per_page=100&featured=yes"); ?>
<!------------------------>
<?php while (have_posts()) : the_post(); ?>
// show posts data, etc
<?php endwhile; ?>
<!-- /STOP LOOP -->
<?php wp_reset_query(); ?>
</div>
</div>
Thanks