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 | |
/** | |
* Plugin Name: Envira Gallery - Display Gallery Publish Date in Album View | |
* Plugin URI: http://enviragallery.com | |
* Version: 1.0 | |
* Author: Mo Noman | |
* Author URI: | |
* Description: Display the gallery publish date before the image count in Album display. | |
*/ |
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
<script type="text/javascript"> | |
jQuery('document').ready(function($){ | |
$('.envira-gallery-image[title]').removeAttr('title'); | |
}); | |
</script> |
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 | |
/** | |
* Plugin Name: Envira Gallery - Set Captions to Image Filenames (without extension) | |
* Plugin URI: http://enviragallery.com | |
* Version: 1.1 | |
* Author: Erica Franz | |
* Author URI: https://fatpony.me | |
* Description: Sets Envira Gallery Captions to their image filenames without the file extension | |
*/ |
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
jQuery(document).ready(function($) { | |
$('.soliloquy-container img').attr('data-pin-nopin', 'true'); | |
}); |
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
/* Give the gallery item a background color that will show through when the image is faded, modify as desired */ | |
.envira-gallery-item-inner { background-color: #000 !important; } | |
/* The opacity of the image on hover */ | |
.envira-gallery-item-inner img.envira-gallery-image.envira-gallery-image:hover { opacity: 0.5 !important; } | |
/* Position caption and hide it by default */ | |
.envira-gallery-item-inner .caption { | |
opacity: 0; | |
position: absolute; |