Imagely
Forum Replies Created
-
Hi @josepedrodiaz.
Thanks. So in this case, NG’s Widget should load the most recent images from the 15 gallery then it is going to load the other images from the other galleries in case that the gallery with ID 15 doesn’t contain sufficient images.
Could you please let us know if that’s the case or perhaps it doesn’t load any images from the needed gallery at all?
Hi @setmonkey13,
To retrieve the gallery’s title you’d need a construction as below then
echothe$gallery_titlevariable whenever you need to display the title:<?php foreach ($displayed_gallery->get_galleries() as $gallery): ?> <?php $gallery_title = esc_html($gallery->title) ?> <?php endforeach ?>As for the Frontend Search related questions – please reach our support team directly at https://www.imagely.com/support/.
We are not allowed to discuss premium related features here in the forum.Hi @beargfr,
It looks like a conflict with a different plugin. Let’s try to temporarily deactivate ZM Ajax Login & Register plugin to see if that’ll resolve the problem with the navigation.
As ref the title captions – you can check within “Manage Galleries” to see if you can custom edit these.
Forum: Plugins
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Custom FieldsHi @setmonkey13,
We are sorry to say that NextGen Gallery doesn’t support adding custom fields for the photos besides the existing Title and Description fields.
If the second code snippet works for all of the images from the gallery feel free to leave it as is. The first one had a conditional allowing the page to completely load before applying.
Well, that’s sort of intentional to make sure the images are all loaded before applying the snippet to ensure there are not images loading later.
As a workaround you can duplicate the same rule excluding the
$( document ).ready()wrapper as below:var $j = jQuery.noConflict(); $j(".caption_link, a").mouseenter(function() { var title = $j(this).attr("title"); $j(this).attr("save_title", title); $j(this).attr("title", ""); }) .mouseleave(function() { var title = $j(this).attr("save_title"); $j(this).attr("title", title); }) .click(function() { var title = $j(this).attr("save_title"); $j(this).attr("title", title); });Hi @victorgodg,
1) You’d need to use a plugin like “Simple Custom CSS and JS” plugin and add the JS snippet from below to the page’s footer to make sure the titles don’t appear on mouse hovering over the preview images:
var $j = jQuery.noConflict(); $j(document).ready(function() { $j(".caption_link, a").mouseenter(function() { var title = $j(this).attr("title"); $j(this).attr("save_title", title); $j(this).attr("title", ""); }) .mouseleave(function() { var title = $j(this).attr("save_title"); $j(this).attr("title", title); }) .click(function() { var title = $j(this).attr("save_title"); $j(this).attr("title", title); }); });2) This one would imply using a custom CSS rule like the one from below to change the font family of the caption:
.ngg-album-compact h4 .ngg-album-desc { font-family: ui-sans-serif !important; }3) You’d need:
.ngg-album-compact h4 .ngg-album-desc:hover { color: #0274be !important; }4) I am afraid that this one isn’t easy achievable unless creating a custom view for the album display type you use and custom add it via the code. Coding skills would be required.
Hi @ppeter12,
NextGen Gallery is compatible with PHP 8.x versions.
Checking the error it appears that the issue is caused by Royalslider plugin…/plugins/new-royalslider/classes/…
We hope that you wouldn’t mind checking with Royalslider support to see if their plugin is compatible with the corresponding PHP version.
- This reply was modified 4 years, 3 months ago by Imagely.
Could you please let us know if you or your hosting has made any server-side changes like updating the PHP version?
Another thing I’d check is to see if all of the images show up on the corresponding page.
We’ve seen in the past cases when albums with missing preview images were generating similar to this one warnings.Thanks, this page appears to contain a NextGen Gallery but both the thumbnails and the lightbox appear to load fine.
You are welcome to submit this request directly at https://www.imagely.com/contact/ indicating this thread’s URL for the reference in case that the gallery doesn’t load correctly for you or perhaps there are specific new uploaded images that are missing.
Hi @bourgerd,
Could you please let us know the page where you are specifically using NextGen Gallery plugin for your gallery?
Checking the provided link, it doesn’t appear that you have NextGen Gallery installed neither using it to display the albums/galleries from your Galerien page. These were all made using the theme’s gallery tool that.
You may be interested to reach the theme provider support for some help with that.
Great to hear of that. We’ll keep an eye to see if we’ll get any other reports but in the meantime I think we can blame it on the caching or on a faulty update.
Hi @fractalcosmo,
First of all, I want to specify that due to this forum’s rules – we are not allowed to provide any support for our premium products here but we may have a suggestion for you if you wouldn’t mind reaching our support team directly at: https://www.imagely.com/contact/
Thanks for your understanding
Hi @smartyp,
Thanks for reaching out regarding this subject. While that’s correct that we restrict by default the admin possibilities for the lower user roles, there’s such a possibility to edit a specific user’s role’s capabilities from “NextGen Gallery -> Other Options -> Roles & Capabilities”.
We may want though to conditionally hide the note though if the corresponding user role doesn’t have edit galleries capabilities.