Skip to content

Instantly share code, notes, and snippets.

@mgratch
Created August 13, 2016 22:40
Show Gist options
  • Save mgratch/5406e2681f4d82e071278d5301b5a065 to your computer and use it in GitHub Desktop.
Save mgratch/5406e2681f4d82e071278d5301b5a065 to your computer and use it in GitHub Desktop.
use this to hide action hooks for https://docs.woocommerce.com/wc-apidocs/hook-docs.html
$.each($("table").find("td:nth-child(2)"),function(index,value){
if("action" === $(value).text()){
$(value).parents("tr").fadeOut();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment