Elementor - сделать первую вкладку аккордеона закрытой

function elementor_accordion_title() { ?>
  <script>
    jQuery(document).ready(function() {
      jQuery( '.elementor-accordion .elementor-tab-title' ).removeClass( 'elementor-active' );
      jQuery( '.elementor-accordion .elementor-tab-content' ).css( 'display', 'none' );
    });
  </script>
<?php }
add_action( 'wp_footer', 'elementor_accordion_title', 99 );

Ещё вариант (для страницы с ID 800):

function elementor_accordion_title() {
if(is_page(800)){
echo '
<script>
	jQuery(document).ready(function() {
    	jQuery( ".elementor-accordion .elementor-tab-title" ).removeClass( "elementor-active" );
    	jQuery( ".elementor-accordion .elementor-tab-content" ).css( "display", "none" );
    });
</script>
';
} }
add_action( 'wp_footer', 'elementor_accordion_title', 99 );