Home › Forums › WoodMart support forum › Adding HTML and icons under product block › Reply To: Adding HTML and icons under product block
January 13, 2022 at 11:21 am
#345105
Elise Noromit
Member
Hello,
Please insert this code into the functions.php of the child theme:
add_action(
'woocommerce_single_product_summary',
function() {
?>
<div class="">
<?php echo do_shortcode( '[html_block id="6915"]' ); ?>
</div>
<?php
},
100
);
Replace the ID of the HTML block for yours. https://gyazo.com/5e60f1ea9a13d1d8c0c0ff076119fb03
Best Regards