Hello everyone.
When using the lightbox function of the Bricks Gallery I noticed that it is not completely accessible.
Is this already known and is a fix expected?
Is there a temporary solution like this one for the Mini-Cart?
add_filter( 'bricks/element/render_attributes', 'bu_minicart_link_aria_label', 10, 3 );
function bu_minicart_link_aria_label( $attributes, $key, $element_instance ) {
if( $element_instance->name == 'woocommerce-mini-cart' && $key == 'a' ) {
$attributes['a']['aria-label'] = 'ENETERARIALABEL';
}
return $attributes;
}
Thank you very much