Похоже, что в теме Flatsome изменилась структура html на страницах их отдельных продуктов … Поэтому попробуйте следующее (слегка обновленная версия) :
// Conditional Show hide checkout fields based on chosen shipping methods
add_action( 'wp_footer', 'close_all_product_tabs' );
function close_all_product_tabs(){
// Only on single product pages
if( ! is_product() ) return;
?>
<script>
jQuery(function($){
setTimeout(function() {
$('#tab-description').hide( function(){
$( 'li.description_tab' ).removeClass('active');
});
}, 200);
});
</script>
<?php
}
Код помещается в файл function.php вашей активной дочерней темы (или активной темы).Должно работать.
Изменено: 'li#tab-title-description'
на 'li.description_tab'
…