Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active August 5, 2016 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/4a7e5f8cb83b05f8dd0f9e9480f85543 to your computer and use it in GitHub Desktop.
Save billerickson/4a7e5f8cb83b05f8dd0f9e9480f85543 to your computer and use it in GitHub Desktop.
<?php
$gallery = ea_cf( 'ea_product_gallery' );
if( $gallery ) {
wp_enqueue_script( 'slick' );
wp_add_inline_script( 'slick',
'jQuery(document).ready(function($){
$(".product-gallery").slick({
autoplay: false,
arrows: false,
dots: true,
});
});' );
// output gallery
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment