caskew2154
7/29/2019 - 2:28 PM

Product Tabs / Accordions Closed By Default Override

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
}