Skip to content

Instantly share code, notes, and snippets.

@mrpsiho
Created January 29, 2019 08:42
Show Gist options
  • Save mrpsiho/73357ad1409a2b345dc865296f8279f6 to your computer and use it in GitHub Desktop.
Save mrpsiho/73357ad1409a2b345dc865296f8279f6 to your computer and use it in GitHub Desktop.
Fixing background color selection in Flatsome theme
const flickty = jQuery('.woocommerce-product-gallery__wrapper').data('flickity');
if (typeof flickty !== 'undefined' && flickty.slides.length > 1) {
flickty.destroy();
jQuery('.woocommerce-product-gallery__wrapper').flickity({
draggable: false
});
}
@cortinashd
Copy link

cortinashd commented Jun 14, 2021

Query: Where do I put this code? use flatsome 3.13.3. Thank you very much for the help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment