Hello,
i had designed two Portfolio sites for test.
My Problem is, that i can not see the Portfolio prev/next Buttons.
Is there a setup to configure this?
I don´t found anything how i can show the prev/next portfolio buttons.
Can you please help me?
Hey Manuel,
Please add following code to Functions.php file in Appearance > Editor
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;
}
Post nav is disabled on portfolio items that has fullwidth elements by default.
Regards,
Yigit
thx for the help. it is working.