How to add Carousel for Related / Recent / Crossell Products ? #35
-
Hi, I am using breeze theme on my website. I want to show carousel for Recent Products, Related Products and Crossell Products. How can I implement this over breeze evolution? Can you please guide me on this. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
vovayatsyuk
Dec 16, 2022
Replies: 1 comment 3 replies
-
You can wrap the products into a In our Argento themes we do this via XML layout update instructions: <referenceContainer name="page.bottom.container">
<container name="before-footer.recent-wrapper" htmlTag="div" htmlClass="recent-products hide show-on-ready" after="-">
<container name="before-footer.bottom.carousel" htmlTag="div" htmlClass="breeze-carousel container"/>
</container>
</referenceContainer>
<referenceBlock name="catalog.product.viewed" template="product/widget/viewed/grid.phtml"/>
<move element="catalog.product.viewed" destination="before-footer.bottom.carousel"/> |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
vovayatsyuk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can wrap the products into a
div.breeze-carousel
and breeze will transform all listings into sliders.In our Argento themes we do this via XML layout update instructions: