Support › Forums › Support (Legacy) › heading issues – causing accessibility issues › Reply To: heading issues – causing accessibility issues
the widget headings on the frame theme are also problematic -http://mevaser.tv/ – in the footer I am using widget headings – which are automatically h5 and within them are headings to posts which are automatically set to h3 – I put in the code that you sent for the buzz theme in the functions.php – but it does not work for the frame theme
the code is
function pojo24475_setup_builder_widget_args( $args ) {
$args[‘before_title’] = ‘<h2 class=”pb-widget-title”><span>’;
$args[‘after_title’] = ‘</span></h2>’;
return $args;
}
add_filter( ‘pb_empty_widget_args’, ‘pojo24475_setup_builder_widget_args’ );