Remove full size image option

  • Unknown's avatar

    Hi! I try to remove the “full size image” option in my image gallery. I found a CSS code (see below), and it’s working, but it removed everything. I would like to keep the description of my image. Can you tell me which code I should use instead please.

    Thanks :)

    .jp-carousel-info {
    display: none;
    }

    .jp-carousel-buttons, .jp-carousel-light .jp-carousel-image-meta {
    display: none !important;

    The blog I need help with is: (visible only to logged in users)

  • Can you describe what you mean a little more? What is it exactly that you are trying to remove? :)

  • Unknown's avatar

    This is a link to open the image in an other window in a full resolution quality.

    Follow this link, and you will see what I mean : https://johannecouture.com/#jp-carousel-231
    It is the little window on the right, where it say “Voir 3188×2452 full size”. I don’t want that window, and I don’t want that people can save my image in a high resolution.

    It’s the same problem with all my images.

    And when I type the CSS code above, everything disapear, even the description of my image.

    Thanks :)

  • Thanks for explaining :)

    This CSS will hide that link for you:

    .jp-carousel-image-meta {
        display: none;
    }

    But something to keep in mind – once you post your images online (even with that link hidden) it’s possible for them to be downloaded by others. (For example, anyone can right click on your image and click the “save” option – this is something there isn’t really a way around.

    Have you considered adding a watermark to your images before you upload them?
    http://www.watermark-images.com/

  • Unknown's avatar

    Thanks, but the CSS code is not working. In fact, it works at the first view, and it comes back after…

    For the “save as” option, I know it, but it is less obvious than the “full size view” link… but yes I should add a watermark :)

  • Thanks, but the CSS code is not working. In fact, it works at the first view, and it comes back after…

    I’m not sure what you mean there – when I view the gallery on your homepage, none of the image have the link any longer. If I remove that CSS, the link reappears. Is that no what you are seeing? :)

  • Unknown's avatar

    Hi,

    No, if I use the code you gave me, it’s not working.

    I reused the code I mentioned above, but it removes everything. But I want to keep the description of my image.

    I just put it back the code you gave me, so you can see.

    Thanks :)

  • I see what you mean about it reappearing – it looks like that was happening for images that had comments attached to them. This will get you around that:

    .jp-carousel-image-meta {
    	display: none !important;
    }

    Same style, I just added !important because we’re working against an inline style that’s added to images with comments.

    Can you tell me what you mean when you say it “removes everything?” When I put the code in, the only thing that goes away is the box with the link to the full sized image (and the comments, if there are any).

    The description of the image isn’t touched by this style, and I still see it in my tests.

  • Unknown's avatar

    Ok it’s working now :)))
    Little something that I see : some images still has a “comment” box under. It’s weird, because I checked “not comment”. See this image for example : https://johannecouture.com/#jp-carousel-54

  • I see what you mean :)

    The setting you checked applies to new items only – images that were uploaded before you checked it will still have comments enabled.

    You can turn them off through the WP Admin Media Library.

    First, visit your Media Library in WP Admin (here’s a link: https://johannecouture.wordpress.com/wp-admin/upload.php)

    Next, find the image you need to fix, and click on it. Now click on ‘Edit More Details’

    Scroll down and uncheck the box to allow comments, and then click Update. Repeat for other images as needed.

  • Unknown's avatar

    It’s working now! Thank you so much for your help! :)

  • The topic ‘Remove full size image option’ is closed to new replies.