Hi, I want to know if is possible to hide the slider only on posts. I need to attaches a feature image to the posts, in order to use the small image in widgets, but i not interested in using the slider on top.
Thank you
Hi, I want to know if is possible to hide the slider only on posts. I need to attaches a feature image to the posts, in order to use the small image in widgets, but i not interested in using the slider on top.
Thank you
Hey,
in includes/loop-index.php replace:
if(isset($slideHtml) && $slideHtml)
{
echo $slideHtml;
$avia_config['slider_first_post_active'] = true;
}
with:
if(isset($slideHtml) && $slideHtml && !is_single())
{
echo $slideHtml;
$avia_config['slider_first_post_active'] = true;
}Hi Dude, thank you, but the slider still there. Any other ideas?
You must log in to post.