Dear Support,
Please look into this.
Private posts don’t appear in the following:
the same private posts do appear in:
How’s that?
Regards,
Hi Tameez!
can you give us a link to your website so we can see what’s going on? are you using newest theme and WordPress version? Please try to deactivate all plugins and see if things get better.
Regards,
Andy
Hey!
the private posts will only be visible when you are logged in. When logged out, they won’t show up.
Cheers!
Andy
Dear Andy,
My friend, I know that much. I would not have bothered if there wasn’t a genuine issue/problem. Did you even see the problem I described? It is exactly as I have described.
Regards,
Hi!
The private posts are showing up fine on our installation using Grid Layout Blog Posts element. It doesn’t display on your installation. I’m not sure why. Try to add this to the functions.php file:
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
function avia_post_slide_query_mod($query, $params)
{
$query['post_status'] = 'publish';
return $query;
}
Cheers!
Ismael