How do you disable the next and back buttons on product pages/all pages? These are the pop-out buttons at the left and right side of the screen.
Thanks!
Hey,
Thanks for contacting us!
Please add following code to Functions.php file of your child theme in Appearance > Editor
/* Remove Post navigation */
function custom_disable_avia_post_nav( $settings ) {
return $settings['skip_output'] = true;
}
add_filter( 'avf_post_nav_settings', 'custom_disable_avia_post_nav', 10, 1 );
If you would like to hide it using CSS, please add following code to Quick CSS in Enfold theme options > General Styling
#top .avia-post-nav { display: none !important; }
Best regards,
Yigit