Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
How do I remove the icon above from the image preview page? I cant see an option for it or any help on the website?
Thanks in advance!
Shaun
Offline
That's a permalink icon,
Unfortunately, I don't think it can be removed.
Offline
Thanks for the reply Kris.
Hmmm thats frustrating.
Offline
that's the image permalink icon. Permalinks are good to have for SEO as well as social media. I don't think you can remove it using the plug-in. Looks like Matt's still working on the documentation for that.
You might be able to remove it using jQuery though.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Hi Rod, cheers for the reply.
SEO isn't important for me as I'm using it slightly differently - as a client gallery.
Would just be nice if I could remove it as people are going to click it without knowing what it is.
Last edited by shaun (2014-08-06 02:02:15)
Offline
that's the image permalink icon. Permalinks are good to have for SEO as well as social media. I don't think you can remove it using the plug-in. Looks like Matt's still working on the documentation for that.
You might be able to remove it using jQuery though.
Rod - I also notice that you don't have the link on your galleries? Any clues?
Offline
which galleries? My main site is still CE3.
I've just spent the last 20 minutes or so trying to figure out the css selectors to remove that icon using JQuery. So far, no luck as it's still appearing in the albums on my CE4 test site.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
On my test site, I can disable the download link with a little CSS
.hs-controls-right li:last-child {
display: none;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
This will depend on other settings. If you've got Image Download enabled, that icon will be removed instead.
Last edited by rod barbee (2014-08-06 04:28:11)
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I suppose you could use nth child?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Some gallery images should never be able to be linked to directly, or rather should not be 'encouraged' to by the ease of a permalink, such as children's galleries.
It just flags up the fact that images (even those in password protected galleries) are actually publicly visible with a direct link - perma or otherwise.
Permalinks are only really suited to blog images.
Last edited by Kris (2014-08-06 06:08:58)
Offline
every image in any TTG gallery already has a permalink, whether a link to it is displayed or not. This makes it easier for people to share images on social media, something folks have been asking for.
But, like Daniel has demonstrated, you can at least remove the link with custom css.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
if you've also got image downloads enabled, try this css:
.hs-controls-right li:nth-child(even) {
display:none;
}
actually, you can probably use this regardless.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
As Rod said, if one knows the link to an image even in password protected galleries, he/she can see the image. More about password protection is at http://ce4.theturninggate.net/docs/doku … _obscurity.
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
I also would like to remove the permalink icon.
i got image download enabled
but where to place the css ".hs-controls-right li:nth-child(even) {
display:none;
}" ????
thank you
Offline
place it in a custom css file
http://ce4.theturninggate.net/docs/doku … custom_css
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Some gallery images should never be able to be linked to directly, or rather should not be 'encouraged' to by the ease of a permalink, such as children's galleries.
It just flags up the fact that images (even those in password protected galleries) are actually publicly visible with a direct link - perma or otherwise.
Single-image pages are passworded protected, same as the thumbnail page. The only way to bypass that password protection is by a direct URL to the JPG, not to the page, which is the case with or without permalinks.
Permalinks are only really suited to blog images.
Given that we have, by user request, supported permalinks in galleries in one form or another for several product generations and a whole bunch of years, I'd have to disagree.
Offline
I understand the reason for permalinks but the user should be able to turn them off if not needed. In my workflow I don't want them.
The method described above for turning off permalinks doesn't work in Highslide mode as it removes also the rightmost navigation button on the top.
In the Popup Large Image Presentation the permalinks don't work, I get a 404-error. And, dependent of filename structure, the many files of type "*single.html" clutter the folder, they should go in a subfolder anyway.
So PLEASE give us the possibility to turn off permalinks if we don't use them.
Michael
Offline
it will probably work if you get more specific with the selector. Try adding #hsId2 in front of the other selectors and also use a number in nth-child rather than "even". This number will depend on how many icons appear, which depends on what features you've enabled, like social media sharing for images:
#hsId2 .hs-controls-right li:nth-child(9) {
display: none;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Permalink permanence is one of the reasons I have decided to stay with CE3 and not update to CE4. I have certain private galleries that I cannot have customers permalinking in to. Blog, yes.
Last edited by Kris (2014-10-02 18:13:23)
Offline
Then go get 6.1.1, Kris.
Offline
edit...
placed response in a new topic as not to veer this one....
Last edited by Kris (2014-10-02 18:09:04)
Offline
I didn't even realize there was a box-shadow on the large images. Had to reduce the background overlay quite a bit to see it. Even then it's hard to see.
try adding this to custom css:
.highslide-wrapper {
box-shadow: none;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline