Add a notice if the product is downloadable in WooCommerce

Add a notice if the product is downloadable in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

function display_digital_product_notice() {
    global $product;

    if ( is_a( $product, 'WC_Product' ) && $product->is_downloadable() ) {
        echo '<div class="digital-product-notice">This is a digital product.</div>';
    }
}

add_action( 'woocommerce_before_single_product', 'display_digital_product_notice' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.