Add a ACF with a downloadable brochure after product short decription

/* Add brochure (if exist) CF inside product after_single_product_summary */
add_action( 'woocommerce_after_single_product_summary', 'display_acf_field_after_single_product_summary', 10 );
function display_acf_field_after_single_product_summary() {
    if (get_field('upload_brochure', get_the_id())):
        echo '<div class="brochure-area">' . '<a href="' . get_field('upload_brochure', get_the_id()) . '" target="_blank">' . '<b>Download Product Datasheet</b>' . '</a>' . '</div>';
    endif;
}
Scroll to Top