• Resolved ryhough

    (@ryhough)


    Hi,

    I’m using the Basic Thumbnails gallery option. When you click on the thumbnail it opens up the image and the image title is automatically included at the bottom left hand side of the screen.

    I don’t want to show the title as many of the images don’t have titles. I can’t see an option anywhere to turn this off.

    Please help.

    Kind Regards
    Ryan

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 16 total)
  • @ryhough – Yes, that’s the default behavior of Simple Lightbox, which is the default Lightbox for NGG now.

    I’ll talk with our team about ways we can perhaps make that optional.

    As a quick fix, you can take the following custom CSS, and add it to your site. Go to Appearance > Customizer. Inside the customizer, look for the Additional CSS tab and add it there.

    .sl-caption {
    display: none !important;
    }

    That will hide the captions for you.

    Thread Starter ryhough

    (@ryhough)

    @edanzer Thank you that did the trick.

    I think adding that as an option would be handy.

    Kind Regards
    Ryan

    Come on guys!
    This is really basic!

    Hello,

    thank you for the idea, but for me it doesn’t work.
    Do you have other idea?

    The page I need help with:
    https://tamifoto.com/fullscreen/hochzeitsfoto-galerie/

    Print screen (mouse isn’t visible but the file name is under that)
    https://tamifoto.com/wp-content/uploads/010.jpg

    Thanks ??

    Brilliant, it worked for me.

    Yes it works but it’s weird that it’s not an option ??

    This works beautifully for me BUT … I would like to have the title showing in black text beneath the image. I’m sure it is possible but it is beyond my rather basic CSS skills.

    @gwatuk – Indeed!

    @edanzer – Thanks for the suggestion, but all or nothing is not really a solution. This is something you should be able to do for individual images.

    So nearly a year on this hasn’t been sorted out.
    There’s just this “quick fix”.
    I find that astonishing.
    @edanzer

    Hi @gwatuk – Thanks! I just wanted to add a few quick notes to manage expectations.

    * As of now, we don’t have any concrete plans to add an option of this kind.
    * This is a feature request, and it’s a decent one. But we have hundreds (maybe thousands) of feature requests from hundreds of thousands of users. We typically triage feature requests, and pursue those that will have the biggest impact for the largest number of users. It’s always a hard call. Some features – like Print Lab Integration, just released – take years in development.
    * Another consideration we always have in our minds: NextGEN Gallery is often criticized for having TOO many options already. It is more options rich than any other gallery plugin. I mentioned we probably have thousands of feature requests. If we added every option that’s requested, our UI would become completely overwhelming. In other words, there is an incremental UI cost to every new option. It’s not a big deal for each one, as we’re discussing here. But it is a big deal if you account for requests by hundreds of thousands of users. So we now think hard about each new option we add.
    * In the case of this request, the original poster’s needs were met, for the most part, with some fairly simple custom css. That means for this option, unlike many others, there is a fairly simple work around. Yes, its limited – you can’t customize by image, but it’s worth noting that if we did add an option like this, we’d probably still add it at the lightbox level, not the image level, because that would cover the majority of needs for this, and because it means adding one option, rather than an option for every image in NextGEN Gallery. So even with the option, you wouldn’t be able to customize by image.
    * I’d note that we have never added any built-in options to customize the default/free lightboxes in NextGEN Gallery, much less options to customize how each image in a Lightbox works.
    * I’d also note that the Pro Lightbox DOES come with dozens of customization options. So there’s already a pro option with similar functionality to what’s being requested here.

    Finally, I’ll just add a caveat. We’re never fixed/unmovable on these kinds of discussion. How we evaluate the relative priority and value of any feature request changes over time as we hear from users. If we get enough critical mass requesting – and particularly if we come to sense that this option would be used by a large percentage of our users – we’d elevate its priority and consider adding it and adding it sooner.

    I’ll take your feedback here as a strong vote in favor. Same for others of you in this thread. While we’re not yet taking action, I do want to emphasize how much we appreciate that you and others are leaving the feedback. It takes time to come back here and do so. And ultimately, it’ll move the needle if we get enough of it. We’re just not there yet when we take into account the entire picture of our user base and their needs.

    I know you still may not be happy that we’re not taking action. But hopefully the context I’m providing gives you a window into why it’s not necessarily an easy or straightforward decision. Thanks and best.

    @edanzer Thanks for your response.

    It occurred to me to try wrapping the title text in a span tag, using the css you suggested, to hide the title on individual images. It sort of works. The image title is hidden, but the alt-text shows the whole html element.

    • This reply was modified 5 years, 1 month ago by grayjay.
    tommuc1

    (@tommuc1)

    @edanzer thanx for the quick fix:

    .sl-caption {
    display: none !important;
    }

    just wondering what the solution is to turn it off only for mobile clients cause they overlap most of the picture there?

    cheers
    tom

    • This reply was modified 5 years ago by tommuc1.
    • This reply was modified 5 years ago by tommuc1.
    • This reply was modified 5 years ago by tommuc1.

    @tommuc1 – Unless I’m misunderstanding your request, I’d think you could just use a media query for that. The following code for example would only hide the caption on screens smaller than 600px:

    @media only screen and (max-width: 600px) {
      .sl-caption {
        display: none !important;
      }
    }

    You can obviously change the 600px there up or down depending on whether you want to target just phones, or include tablets too.

    tommuc1

    (@tommuc1)

    @edanzer thank you so much for the perfect working and superfast answer!

    have a nice weekend + regards from munich/bavaria/germany
    tom

    It should still be an OPTION. I don’t want captions or titles showing up either because I want to use my own titles without interferrence from some popup caption or title.
    I have a very large website with lots of images. Some modules I want to show captions, others, I do NOT.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘I don’t want to show titles on images’ is closed to new replies.