How to open the first accordion tab of a product?

Hongo theme provides all accordion tab as a closed in single product by default for three different styles such as Right Content Product, Left Content Product and Sticky Product. However, if you want to open the first accordion tab then you need to add below custom jQuery code into your Admin area > Appearance > Customize > Additional JS

jQuery( window ).load( function() {
	
	// First accordion object
	var firstObj = jQuery( '.hongo-accordion li:first-child .hongo-accordion-section-title' );

	// Active first accordion on single product page
	firstObj.trigger( 'click' );
	
});
SCROLL UP