Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kriskratz/b8539f7bc330046bc8cb64f67d84cf14 to your computer and use it in GitHub Desktop.

Select an option

Save kriskratz/b8539f7bc330046bc8cb64f67d84cf14 to your computer and use it in GitHub Desktop.
disable scrolling on woocommerce-tabs
// Original Source: https://gist.github.com/andrea-sdl/e3beaa8e2e3256cc4efa0f8527b627aa
// Add to Footer: wp_enqueue_script('wc-disable-tab-scrolling', get_stylesheet_directory_uri() . '/scripts/disable-scrolling-wc-tabs.js', array(), false, true);
jQuery(document).ready(function() {
jQuery(".wc-tabs li a").click( function(e) {
e.preventDefault();
jQuery(".wc-tabs li").removeClass("active");
jQuery(this).parent().addClass("active");
jQuery(".woocommerce-Tabs-panel:visible").hide();
jQuery(jQuery(this).attr("href")).show();
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment