0
votes

I'm trying to add a shortcode that will be placed on all single product posts. Specifically on the product's short description. I went to woocommerce templates and found a file "short-description" and I tried placed following code, but it's not working:

<?php echo do_shortcode("[wpqr-code]"); ?>

This shortcode is to supposed to generate and display a qr code on each product post where it is placed.

1
Please elaborate it more.... e.g. where this description is showing ? listing page or details page ?Alice

1 Answers

0
votes

I found a solution if anyone needs. Place this code in functions.phpfile:

add_action( 'woocommerce_before_add_to_cart_form', 'enfold_customization_extra_product_content', 15 );
function enfold_customization_extra_product_content() {
    echo do_shortcode("[wpqr-code]");
}