Hi thinkswan!
Thank you for great plugin! Everything works fine for me. But I’ve got one problem too. I’ve set my Notification UID, but still doesn’t receive any notifications when comment is posted. Any solutions?
Thanks in advance 😉
I have the same problem. My first post code looks like this:
<?php $top_query = new WP_Query('showposts=1'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); $first_post = $post->ID; ?>
And secondary posts code i have changed to:
<?php
if (is_home()) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-3&paged=$paged");
}
?>
Now with secondary posts everything is ok. When I press previous entries button secondary posts change to older ones but I still see my first post :(. What is the solution? Please help me. I was trying to search google for ages.. You can see how it works at http://topten.lt
Sorry for my English.