Buy me a coffee

How to add Accordion to All Products

To add an accordion to a product, you can edit Additional Info > Add an Accordion Block.
However if you want to add a same accordion block to all products, instead of doing this manually, you can follow these.

#1. Edit Site Footer

How To Add Accordion To All Products 1 Min

#2. Add an Accordion Block to Site Footer

How To Add Accordion To All Products 2 Min

#3. Use this code to Custom CSS box

footer.sections .accordion-block {
    display: none;
}

How To Add Accordion To All Products 3 Min

#4. Use this code to Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('footer.sections .accordion-block').insertAfter('.ProductItem-summary');
});
</script>

How To Add Accordion To All Products 4 Min

#5. Result

How To Add Accordion To All Products 5 Min