Tagged: advanced layer slider, avia layout builder
Hi ,
I have a custom post type and this is displayed using AVIA layout builder “PORTFOLIO GRID”
When you click through to the POST single() the NEXT and PREV post are available as per the theme functionality.
However as soon as you add a AVIA layout builder ADVANCED LAYER SLIDER to the post layout the NEXT and PREV post functionality is no longer available.
I’d like to keep the NEXT and PREV posts
Any chance there is a fix for this ?
thanks!
Hey HuxburyQuinn!
Thank you for using the theme.
Please add this on functions.php:
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;
}
Cheers!
Ismael
Hi Ismael
Thanks Heaps !
that did the trick!