Advertisement
Guest User

functions.php

a guest
Apr 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_action( 'woocommerce_before_shop_loop_item_title', function() {
  2.     global $product;
  3.     if ($product->managing_stock() && !$product->is_in_stock() ) {
  4.         echo '<span class="product_out_of_stock_label">Fora de estoque</span>';
  5.     }
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement