Hi,
In each article I have installed related articles and I see the same article that I already displayed.
Could you check all configurations?
Thanks for support
Hi,
Thank you for using Enfold.
Did you use the “Blog Posts” element? Please try this filter in the functions.php file.
add_filter('avia_post_slide_query', 'avf_custom_post_grid_query');
function avf_custom_post_grid_query ( $query ) {
if(is_singular('post')) {
global $post;
$query['post__not_in'] = array($post->ID);
}
return $query;
}
Best regards,
Ismael