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' );