Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created July 20, 2013 15:04
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agusmu/6045382 to your computer and use it in GitHub Desktop.
Save agusmu/6045382 to your computer and use it in GitHub Desktop.
WooCommerce - Hide product meta using CSS
/* hide SKU on product meta section */
.product_meta .sku_wrapper {
display:none;
}
/* hide product categories on product meta section */
.product_meta .posted_in {
display:none;
}
/* hide product tags on product meta section */
.product_meta .tagged_as {
display:none;
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

@aqizlicious
Copy link

Thank you.

@TomEweb
Copy link

TomEweb commented Oct 24, 2017

For some reason, hiding SKU doesn't work for me. I can hide the sku number not SKU.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment