// Allow HTML in Visual Composer Toggle heading
function myprefix_filter_wpb_toggle_heading( $heading, $atts ) {
return html_entity_decode( $heading );
}
add_filter( 'wpb_toggle_heading', 'myprefix_filter_wpb_toggle_heading', 10, 2 );
// Allow HTML in Visual Composer Toggle heading
function myprefix_filter_wpb_toggle_heading( $heading, $atts ) {
return html_entity_decode( $heading );
}
add_filter( 'wpb_toggle_heading', 'myprefix_filter_wpb_toggle_heading', 10, 2 );