Any fixes for this issue?
Hi!
If I have a new Accordion Tab Field in ACF Tab group – the content with accordion is not collapsing.
I think that the problem is that ACF v5.3.1 css styles conflicting with Accordion Tab Field styles:
acf-input.css?ver=5.3.1
.hidden-by-tab {
display: none !important;
}
An dirty fix (tested in DevTools) that works for me:
.acf-accordion-group.opened .acf-field {
display: block !important;
}