Last active
April 22, 2021 16:11
-
-
Save Spirecool/bb2eff495c6906c976709464a488846a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'woocommerce_after_shop_loop_item', 'popcorn_show_stock_shop', 10 ); | |
| function popcorn_show_stock_shop() { | |
| global $product; | |
| echo wc_get_stock_html( $product ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment