Hi,
In the template demo (enfold) in your portfolio single item pages, there are arrows in left and right side which links to the privious or next portfolio item. See here: http://kriesi.at/themes/enfold/portfolio-item/slider-two-third/
Is there a setting to include this? I also had this in the beginning, but as soon I start editing the item these arrows disapears and I don’t know why.
Hi t3lgroup!
No, they should be showing automatically as far as I know. Can we see your site where they aren’t showing?
Cheers!
Devin
Hello,
Please find a link to a ‘product page’ (portfolio page) where they should show up: http://www.3loptest.dk/portfolio-item/veo-desk/
As mentioned, I installed the template with “dummy content” and here they showed just fine in frontend, but as soon as I go into one of the items and just insert a new image and click “update” they are gone from frontend.
Hi!
Kriesi deactivated the avia post navigation on pages with fullwidth slider. Please add this on functions.php if you want to activate them on all posts or pages:
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
function avia_remove_fullwidth_slider_check($settings)
{
$settings['is_fullwidth'] = false;
return $settings;
}
Best regards,
Ismael
Hi,
Thanks for this. Just to be sure: it is the functions.php located in ‘wp-content->themes->enfold->functions.php’ ?
Where in this file do I have to paste it?