Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save radosek/c92517e695e46e844e78782db7f28e5e to your computer and use it in GitHub Desktop.
Save radosek/c92517e695e46e844e78782db7f28e5e to your computer and use it in GitHub Desktop.
disable scrolling on woocommerce-tabs
jQuery(".woocommerce-tabs li a").off("click");
jQuery(".woocommerce-tabs li a").click(function (e) {
e.preventDefault();
jQuery(".woocommerce-tabs li").removeClass("active");
jQuery(this).parent().addClass("active");
jQuery(".woocommerce-Tabs-panel:visible").hide();
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