Is there any way of disabling dots being clickable i.e i just need dots as page indicators not allowing users to click on them to change pages.
Best regards
Sumi
How about with CSS.
.slick-dots li button{
pointer-events: none;
}
I solved it ! thanks <3
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
How about with CSS.