This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: AUTOPOPULATE + CUSTOM POST

#21832
Ernest MarcinkoErnest Marcinko
Keymaster

I am not sure why. Maybe try this variation:

add_action('wp_footer', 'asp_scroll_to_nav_top');
function asp_scroll_to_nav_top() {
  ?>
  <script>
  jQuery(function($){
    $('.asp_r').on('click touchstart touchend', '.asp_navigation *', function(e){
      var stop = $(this).closest('.asp_r').offset().top - 20; 
      if ( $('html').scrollTop() > stop ) { 
        $('html').animate({
            "scrollTop": stop
        }, {
            duration: 500
        });
      }
    });  
  });
  </script>
  <?php
}