We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Move accordion on the product page

Solved

Move accordion on the product page

zoeeblightt
Tourist
8 1 2

I am wanting to move my product page accordion to be apart of the product page section. 

Accordion.png

 

 

Currently it is a section of its own (Centred) . Is it possible to convert the accordion to a block in the product section so it is left aligned and scrollable with the remaining product content?

 

product page.png

Accepted Solution (1)

BSSCommerce-B2B
Shopify Partner
1972 564 567

This is an accepted solution.

You can add this code to the end of theme.liquid file in Edit code

BSSCommerceB2B_1-1724677690899.png

Code:

 

<script>
document.addEventListener("DOMContentLoaded", function() {
        const accordion = document.querySelector('#shopify-section-template--15922993922125__79425d6b-ce46-4c3d-afe0-93e94ace7479');
    const description = document.querySelector('.product__section-content');
    
    if (accordion && description) {
        description.appendChild(accordion);
    }
});
</script>

 

Result 

BSSCommerceB2B_0-1724677585768.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 2 (2)

BSSCommerce-B2B
Shopify Partner
1972 564 567

This is an accepted solution.

You can add this code to the end of theme.liquid file in Edit code

BSSCommerceB2B_1-1724677690899.png

Code:

 

<script>
document.addEventListener("DOMContentLoaded", function() {
        const accordion = document.querySelector('#shopify-section-template--15922993922125__79425d6b-ce46-4c3d-afe0-93e94ace7479');
    const description = document.querySelector('.product__section-content');
    
    if (accordion && description) {
        description.appendChild(accordion);
    }
});
</script>

 

Result 

BSSCommerceB2B_0-1724677585768.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

zoeeblightt
Tourist
8 1 2

Thank you! That worked 🙂