add_action( 'woocommerce_after_shop_loop_item', 'woo_show_excerpt_shop_page', 5 ); function woo_show_excerpt_shop_page() { global $product; if ( ! $product instanceof WC_Product ) { return; } $short_description = $product->get_short_description(); if ( ! empty( $short_description ) ) { echo '
À partir de ' . wc_price( $min_price ) . '
'; } } // Affiche la description courte sur la page produit add_action( 'woocommerce_single_product_summary', 'woo_show_excerpt_on_single_product', 21 ); function woo_show_excerpt_on_single_product() { global $product; if ( ! $product instanceof WC_Product ) { return; } $short_description = $product->get_short_description(); if ( ! empty( $short_description ) ) { echo 'À partir de ' . wc_price( $min_price ) . '
'; } }