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.
Pages: 1
Could it be that the Robots (Privacy) Checkbox has no more effect.
Toggle on and toggle off results in the Meta data as:
<meta name="robots" content="noarchive, noindex, nofollow">
My site imagepower.ch is gone frome google... :-(
Or am I makîng some mistakes here?
Cheers
Fabian
Last edited by fabian.trees (2015-09-05 05:48:28)
Offline
If you turn that on, you're site should be hidden from search engines.
you can also create your own robots.txt file. Just Google about the interwebs for some guidance.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
turning on and turnig off has no effect on the values in
<meta name="robots" content="noarchive, noindex, nofollow">
it's every time the same...
I can not turn off this line!
Offline
seems to be an error in the file head.html:
<% if M.page_setup.html.robots == 'disallow' or M.password.enable then %>
<meta name="robots" content="noarchive, noindex, nofollow" />
<% end %>
Offline
do you have passwords enabled?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
in ce4pages I Can't enable passwords... (not sure but I did not found some checkboxes...)
But for Indexes and pages, this was true and the right hint! thanks!
Last edited by fabian.trees (2015-09-05 06:35:49)
Offline
Hurra! You had the right idea. Copying the styleData section from galleries to pages (with password protection on) the pages template had also password protection on (but hidden, you can't see it in lightroom).
Thanks for another great support!
Fabian
Offline
Copying the styleData section from galleries to pages (with password protection on) the pages template had also password protection on (but hidden, you can't see it in lightroom)
that's something that's good to know. I just saw the "or M.password..." in the code and thought that might cause the problem.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Good find. I'll make sure this is fixed for the next Pages update.
As you've already found the code, you can safely change:
<% if M.page_setup.html.robots == 'disallow' or M.password.enable then %>
To:
<% if M.page_setup.html.robots == 'disallow' then %>
Offline
Pages: 1