Hi there,
The URL you provided will only be visible to users logged in.
If you need to add captions also, you will need to make code changes in the plugin.
Open ep-justified-gallery.php
and add
<div class="c"><?php echo wp_get_attachment_caption( $id ); ?></div>
after
<img src="<?php echo esc_url( $img['0'] ); ?>" alt="<?php echo esc_attr( get_post_meta( $id, '_wp_attachment_image_alt', true) ); ?>">
Then add
.justified-gallery>a>.c{
position: relative;
bottom: 0;
padding: 5px;
background-color: #000;
left: 0;
right: 0;
margin: 0;
color: #fff;
font-size: 12px;
font-weight: 300;
font-family: sans-serif;
}
in your custom CSS box.
This will make your caption appear before your image.
Try installing the WP Editor plugin to enhance the default editor, or use the default editor if you have the latest WordPress version and navigate to the /plugins/elements-plus/elements/ folder to find the file.
This is a quite difficult task and since it is not supported natively from the plugin.
We will try to provide this kind of functionality in future updates though.