Slick Carousel disables links inside the slide

If you have links inside your slide and you want to be clickable then you have to disable the swipe option in slick configuration.
eg:

$slideshow.slick({
    swipe: false,
    arrows: false,
    slide: '.slide-item'
});