Home Forums WoodMart support forum I need to add shortcode to the mobile popup of the product page Reply To: I need to add shortcode to the mobile popup of the product page

#481698

Hello,

Please add this code to the functions.php of the child theme:

add_action( 'woocommerce_single_product_summary', function () {
	if ( function_exists( 'woodmart_loop_prop' ) && woodmart_loop_prop( 'is_quick_view' ) ) {
		echo do_shortcode( '[no_credit_needed_text_link]' );
	}
}, 50 );

If you have any questions please feel free to contact us.

Best Regards