Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UraraReika/fe11dcf10002a55b8c7621bdd3f58c32 to your computer and use it in GitHub Desktop.
Save UraraReika/fe11dcf10002a55b8c7621bdd3f58c32 to your computer and use it in GitHub Desktop.
Add whatever you want option to swiper slider.
<?php
add_filter( 'jet-woo-builder/tools/carousel/options', '__your_prefix_add_carousel_options' );
function __your_prefix_add_carousel_options( $options ) {
$options['freeMode'] = true;
return $options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment