Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zakirsajib/fd6b68384c33e8c374a882aa65be7b1a to your computer and use it in GitHub Desktop.
Save zakirsajib/fd6b68384c33e8c374a882aa65be7b1a to your computer and use it in GitHub Desktop.
Hide Sale text in WooCommerce
# There are two ways we can hide Sale text
# Using CSS
.content-area .summary .onsale{
display: none;
}
# Using remove action
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment