All Projects → Nordic-Dev → shopify-product-image-slider

Nordic-Dev / shopify-product-image-slider

Licence: other
Implementation of the Slick image carousel into a Shopify store

Programming Languages

Liquid
124 projects

Projects that are alternatives of or similar to shopify-product-image-slider

SimpleSlider
Simple responsive slider created in pure javascript.
Stars: ✭ 21 (+0%)
Mutual labels:  slider, carousel
svelte-slidy
📸 Sliding action script
Stars: ✭ 211 (+904.76%)
Mutual labels:  slider, carousel
gulp-shopify
Blank slate Shopify theme for Developers, packaged with Gulp.js for processing SCSS, JavaScript (ES6), images and fonts. Made to support Online Store 2.0 features and Shopify CLI.
Stars: ✭ 142 (+576.19%)
Mutual labels:  shopify, shopify-theme
shopify-slater-tailwindcss
Shopify Starter Theme + TailwindCSS with PurgeCSS
Stars: ✭ 40 (+90.48%)
Mutual labels:  shopify, shopify-theme
vanilla-js-carousel
Tiny (1Kb gzipped) JavaScript carousel with all the features most of us will ever need.
Stars: ✭ 87 (+314.29%)
Mutual labels:  slider, carousel
angular-simple-slider
An AngularJS directive providing a simple slider functionality
Stars: ✭ 15 (-28.57%)
Mutual labels:  slider, carousel
react-carousel-minimal
React.js Responsive Minimal Carousel
Stars: ✭ 76 (+261.9%)
Mutual labels:  slider, carousel
MediaSliderView
Pure java based, highly customizable media slider gallery supporting both images and videos for android.
Stars: ✭ 85 (+304.76%)
Mutual labels:  slider, carousel
react-flickity-component
A React.js component for using @desandro's Flickity
Stars: ✭ 258 (+1128.57%)
Mutual labels:  slider, carousel
skeleton-carousel
Carousel component. Horizontal and vertical swipe navigation
Stars: ✭ 31 (+47.62%)
Mutual labels:  slider, carousel
shopify-bootstrap-theme
Our Free Shopify Theme focused on simplicity, speed, and user experience. Download it today and finish your Shopify store within days, not months. Powered by Bootstrap v5 framework and 15+ years of coding experience.
Stars: ✭ 45 (+114.29%)
Mutual labels:  shopify, shopify-theme
syncify
🤝 Shopify theme upload, download and watch development tool.
Stars: ✭ 50 (+138.1%)
Mutual labels:  shopify, shopify-theme
vue3-carousel
Vue 3 carousel component
Stars: ✭ 379 (+1704.76%)
Mutual labels:  slider, carousel
vue-barousel
Carousel component mimics NetEase Cloud Music
Stars: ✭ 13 (-38.1%)
Mutual labels:  slider, carousel
react-instagram-zoom-slider
🌄↔️ A slider component with pinch to zoom capabilities inspired by Instagram
Stars: ✭ 67 (+219.05%)
Mutual labels:  slider, carousel
pinar
🌲☀️ Customizable, lightweight React Native carousel component with accessibility support.
Stars: ✭ 214 (+919.05%)
Mutual labels:  slider, carousel
Ajaxinate
🎡 Ajax pagination plugin for Shopify themes
Stars: ✭ 107 (+409.52%)
Mutual labels:  shopify, shopify-theme
vue-splide
The Splide component for Vue.
Stars: ✭ 257 (+1123.81%)
Mutual labels:  slider, carousel
bootstrap-shopify-theme
🛍 A free Shopify Theme built with Bootstrap, BEM, Liquid, Sass, ESNext, Theme Tools, ... and Webpack.
Stars: ✭ 41 (+95.24%)
Mutual labels:  shopify, shopify-theme
vue-piece-slider
animated slides in a fragmented look 🐞🌳✡️📐
Stars: ✭ 95 (+352.38%)
Mutual labels:  slider, carousel

Image carousel for Shopify product images

There are a lot of out of the box apps for sliders on the Shopify App market but I wasn't able to get one that just took the product images and wrapped them in a simple slider. This implementation uses the Slick image carousel created by @kenwheeler into a Shopify store.

Reference the Slick css and js files in your theme.liquid file.

  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css"/>
  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css"/>
  <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>

Create new file called product-image-slider.liquid

In your Shopify theme, create a new snippet called product-image-slider.liquid

Reference the new product-image-slider.liquid from your product template

From your product page template(product-template.liquid) remove the contents from <section class="primary-images"> and paste the include statement to the product-image-slider.liquid file.

<section class="primary-images">
    {% include 'product-image-slider' %}
</section>

*Not all Shopify themes are the same so yours might not have a product-template.liquid file in the sections folder. If that's the case look around for your product page template and insert this new code into that template file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].