Howdy,
sorry, probably one of the easiest questions ever asked here – I’m using enfold for a couple of clients now – but damn … what I can’t find right now – where can I turn it off: that ‘tab’ at the edge of the page – it is a portfolio entry
Thanks a lot
Stefan
Hey steridhh,
Thank you for the inquiry.
That is the post navigation and it can be disabled in the Enfold > Blog Layout > Single Post Navigation settings. You can also use this filter in the functions.php file.
add_filter("avf_post_nav_settings", function($settings) {
$settings['skip_output'] = true;
return $settings.
}, 10, 1);
Best regards,
Ismael