[Woocommerce] Mostrar etiqueta SOLD OUT

<?php function reha_single_product_sold_tag(){ global $product; if ( !$product->is_in_stock() ) { echo '<span class="tag_soldout">' . __( 'SOLD OUT', 'woocommerce' ) . '</span>'; } } add_action( 'woocommerce_single_product_summary', 'reha_single_product_sold_tag', 6 ); ?>
Función que muestra una etiqueta (badge), cuando un producto esta fuera de stock.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.