Add HTML block inside the cart popup
-

RDParticipant
Hello,
it is possible to add inside the cart popup HTML BLOCK as a shortcode that will allow me to add maybe more products suggestions?
check the attach image to understand what I am looking for.
Attachments:
You must be
logged in to view attached files.
Hi RD,
Thanks for reaching to us and appreciate your patience.
Please add this code to the functions.php of the child theme:
add_action( 'woocommerce_widget_shopping_cart_total', function(){
echo do_shortcode( '[html_block id="3008"]' );
}, 5 );
[html_block id="3008"] insert your HTML block ID in this place.
Regards,