Home › Forums › WoodMart support forum › Quick view HTML BLOCK issue › Reply To: Quick view HTML BLOCK issue
October 29, 2018 at 1:31 pm
#85923

Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file
function woodmart_html_block_shortcode($atts) {
if( class_exists('WPBMap') )
WPBMap::addAllMappedShortcodes();
extract(shortcode_atts(array(
'id' => 0
), $atts));
return woodmart_get_html_block($id);
}
add_shortcode( 'html_block', 'woodmart_html_block_shortcode' );