Tagged: Portfolio
This feature is only available when the page have the special heading but is missed when i put the Fullwidth Easy Slider header.
is it possible to have the “go to next or prev item arrows” in a portfolio page that have Fullwidth Easy Slider header ??
Hey vicx74ever,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Hi vicx74ever,
Can you try adding this code in functions.php:
add_filter('avf_post_nav_settings', 'custom_post_nav_settings');
function custom_post_nav_settings( $settings ) {
$settings['skip_output'] = false;
return $settings;
}
I would suggest using a child theme to make this change permanent.
Best regards,
Nikko