The site is being developed in non-cached environment but I did clear the style cache as recommended. However that didn’t resolve the issue - not sure how you’re seeing this tab selected and I’m not.
This was the same for both cleared incognito Safari and Chrome.
As a temporary fix I have added the following code (In case anyone else has this issue with your the build);
window.sm_toggle = function(status, model_class, cb = '', bgclose = true) {
setTimeout(function(){
var id = jQuery('.' + model_class).attr('data-x-toggleable');
var isModalOpen = window.xToggleGetState( id );
if (status == true) {
window.sm_bg_close = bgclose;
if (!isModalOpen) {
window.xToggleUpdate( id, status );
}
} else {
window.sm_bg_close = true;
window.xToggleUpdate( id, status );
}
if (cb != "") cb();
}, 100);
}
Basic global function that enables objects in Theme.co e.g. Modals but also works on Tabs. Add a classname to the object that you want triggered active - in this case the tab itself “main_tab”
jQuery(document).ready(function() {
sm_toggle(true, 'main_tab');
)};
I still believe there’s a bug in theme or something in your test environment - but hopefully this will be resolved when the next update comes out.
Thanks,
Matt