Skip to content

Instantly share code, notes, and snippets.

@Spirecool
Last active April 22, 2021 16:11
Show Gist options
  • Select an option

  • Save Spirecool/bb2eff495c6906c976709464a488846a to your computer and use it in GitHub Desktop.

Select an option

Save Spirecool/bb2eff495c6906c976709464a488846a to your computer and use it in GitHub Desktop.
<?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