Created
February 11, 2014 09:01
-
-
Save GaryJones/8931492 to your computer and use it in GitHub Desktop.
Envira Gallery tweak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'envira_gallery_api_config', 'tgm_envira_disable_fancybox_preloading' ); | |
function tgm_envira_disable_fancybox_preloading() { | |
ob_start(); | |
?> | |
preload: 0, | |
nextEffect: 'none', | |
prevEffect: 'none', | |
<?php | |
echo ob_get_clean(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment