EduardET

show out-of-stock message on the product category

Nov 13th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. // display an 'Out of Stock' label on archive pages
  2. add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_stock', 10 );
  3. function woocommerce_template_loop_stock() {
  4.     global $product;
  5.     if (!$product->is_in_stock() )
  6.         echo '<p class="stock out-of-stock">Out of Stock</p>';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment