On focus reviews and not product description.

Solved

On focus reviews and not product description.

rocketdigital
Tourist
11 0 19

On the product page, by default, the description part is on focus (visible) and reviews etc are hidden tabs or not visible until clicked. I want to make the reviews visible when the page is viewed and the description can be hidden until clicked.

Accepted Solution (1)

gr_trading
Shopify Partner
1885 145 198

This is an accepted solution.

@rocketdigital 

 

Try using the below code you can put this code at the very end of main-product.liquid

 

 

<script>
document.addEventListener('DOMContentLoaded', function () {
        document.querySelector("#shopify-section-gl-product-page-description .reviews_tab a").click()
});
</script>

 

 

Hope it will help...

For any custom development WhatsApp or connect at Email ID: gr.trading15@gmail.com for quick consultation. | Shopify Free codes
To support Buy Me a Coffee

View solution in original post

Replies 4 (4)
rocketdigital
Tourist
11 0 19

We are using the theme below, if you see the product page, you will see that description is in focus and only when you click the reviews, can you see the reviews. we want the reviews to be in focus when the page opens and description should be on click.

 

https://new-basel.myshopify.com/collections/shoes/products/ytristique-adipiscing

rocketdigital
Tourist
11 0 19

Yes

gr_trading
Shopify Partner
1885 145 198

This is an accepted solution.

@rocketdigital 

 

Try using the below code you can put this code at the very end of main-product.liquid

 

 

<script>
document.addEventListener('DOMContentLoaded', function () {
        document.querySelector("#shopify-section-gl-product-page-description .reviews_tab a").click()
});
</script>

 

 

Hope it will help...

For any custom development WhatsApp or connect at Email ID: gr.trading15@gmail.com for quick consultation. | Shopify Free codes
To support Buy Me a Coffee
rocketdigital
Tourist
11 0 19

Thanks, it worked!