Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active December 10, 2015 11:13
Show Gist options
  • Save frankschrijvers/d4b17a00c01a57c1db38 to your computer and use it in GitHub Desktop.
Save frankschrijvers/d4b17a00c01a57c1db38 to your computer and use it in GitHub Desktop.
WooCommerce - Add sold out badge on single product pages
<?php
//* Do NOT include the opening php tag
//* Add sold out badge on single product pages
add_action( 'woocommerce_before_single_product_summary', function() {
global $product;
if ( !$product->is_in_stock() ) {
echo '<span class="soldout">Sold out</span>';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment