Snippet for lightbox disabling
-
Put this code into your functions.php file and plugin lightbox efect will be removed.
function tiled_gallery_remove_lightbox_assets( $output ) { wp_deregister_script( 'spin' ); wp_deregister_script( 'jquery.spin' ); wp_deregister_script( 'jetpack-carousel' ); wp_deregister_style( 'jetpack-carousel' ); return $output; } add_filter('post_gallery', 'tiled_gallery_remove_lightbox_assets', 9999 );
https://www.ads-software.com/plugins/tiled-gallery-carousel-without-jetpack/
- The topic ‘Snippet for lightbox disabling’ is closed to new replies.