Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1258877

    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!

    • This topic was modified 4 years, 5 months ago by jwag17.
    #1258884

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.