Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
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
I am wanting to move my product page accordion to be apart of the product page section.
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?
Solved! Go to the solution
This is an accepted solution.
You can add this code to the end of theme.liquid file in Edit code
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
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
This is an accepted solution.
You can add this code to the end of theme.liquid file in Edit code
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
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
Thank you! That worked 🙂