A free lightbox with all photographing features I need
-
In comparison with other lightbox plugins for different galleries, this plugin is the one which is really made for photgraphers. Coming from Koken, I used to have the EXIF information (aperture, shutter speed…) besides a photo. Trying other galleries, I had to patch this information into the source code, while this plugin shows them by default.
I have to criticize one thing: the used icon font gets loaded from a CDN, which is not so good in Europe because of the new law (EU GDPR). I’ve fixed that by downloading the ionic font locally and adding the following to the functions.php of my child theme:
function unhook_gdpr_style() { // ionic fonts wp_dequeue_style( 'ionicons' ); wp_register_style( 'ionicons_local', get_stylesheet_directory_uri() . '/ionicons.min.css' ); wp_enqueue_style( 'ionicons_local' ); } add_action( 'wp_enqueue_scripts', 'unhook_gdpr_style', 20 );
But besides that, I love it. Five stars without thinking long about that.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘A free lightbox with all photographing features I need’ is closed to new replies.