mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/68390700/php-snippet-to-hide-short-description-when-stock-is-zero-in-woocommerce
12 lines
429 B
Text
12 lines
429 B
Text
add_action( 'woocommerce_before_single_product', 'woocommerce_before_single_product_action' );
|
|
function woocommerce_before_single_product_action() {
|
|
global $product;
|
|
|
|
if ( $product ) {
|
|
$quantity = $product->get_stock_quantity();
|
|
|
|
if ( $quantity !== null && $quantity === 0 ) {
|
|
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
|
|
}
|
|
}
|
|
}
|