All things Shopify and commerce
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
Hi community I am in need of help with a custom section bought from section store. The section is called slider #2. I need to make each individual slide clickable. The slides themselves do not have a place for CSS. However the section does have a placement for CSS. It gives me the option of adding a button but for the purpose of the look, I would much rather have them be clickable. Any help would be greatly appreciated.
Hi @Rio_Omnis ,
You can make changes to the code directly by going to Online Store --> Themes --> ... --> Edit code --> slideshow.liquid
Thanks
Hi Rio,
Find the app's code in your theme where the slides are rendered, likely within a loop like {% for blocks in section.blocks %}. Wrap block (slide) element within <a href="{{ block.settings.link }}"></a> tag. The link will be similar to the slide's button so you can copy its code.
Hi, here is the code I found where would I place what you are mentioning.