Runs a function at a higher than normal priority to override WooCommerce's attempts to automatically open first tab of an accordion. Priority is set by 1000.
add_action( 'wp_footer', 'close_first_tab', 1000 );
function close_first_tab() {
if ( ! is_product() ) {
return;
}
?>
<script type="text/javascript">
jQuery( document ).ready( function() {
jQuery( '.product-page-accordian .accordion-title:eq(0)' ).click();
});
</script>
<?php
}