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.
Found the solution here: https://github.com/metafizzy/flickity/issues/540
Just css
.flickity-viewport {
touch-action: pan-y !important;
}
Best regards,
Oliver
Hi all,
as mentioned in the subject swiping is not possible with Pangolin Theater Filmstrip in Chrome, Opera, neither on my mobile android device nor on my android tablet. Even the image is not centering properly.
Any solution in sight or have I go back to okapi (which would be the worst option)???
Thx in advance.
Best regards,
Oliver
Hi all,
In the Pangolin Advanced Setup > Page Setup the language selector has no effect, the Text-direction has.
I would like to change the language to "german".
No matter which language I select it always shows english :-( <html dir="ltr" lang="en">
Any solution in sight???
Best regards,
Oliver
Hi Matt,
thanks, of course I will once the site is ready ;-)
Cheers,
Oliver
Rod, thanks a lot!
I missunderstood you :-)
I copied and pasted your code and it works perfect for me :-)
Best solution!
Best regards,
Oliver
Hello Rod,
thank you!
I set the width to 1280 in css:
.page__pallet__top.is-fixed {
width:1280px;
}
but how to center it on the page?
Hi Matt,
thank you for your reply.
I checked it out but did not find any solution.
How to do it by css that the top pallet has its fixed width of 1280px while scrolling?
Any help or suggestions appreciated.
Best regards,
Oliver
Hi all,
I'm using a top pallet with a fixed width of 1140px. When scrolling down its width expands over the whole width of the browsers window.
Is it possible to keep it on 1140px?
Thx in advance.
Best regards,
Oliver
Hi Matt,
thank you for your reply!
Any chance to swipe the Vegas inline slideshow?
Best regards,
Oliver
Hi all,
is it somehow possible to let the Filmstrip auto play?
Best regards,
Oliver
Hi Charlie,
I copied your .htaccess file, looks like the following: Do I have to overwrite the .htaccess in the backlight settings too???
# ------------------------------------------------------------------------------
# | Web fonts access |
# ------------------------------------------------------------------------------
# Allow access from all domains for web fonts
<IfModule mod_headers.c>
<FilesMatch "\.(eot|font.css|otf|ttc|ttf|woff)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
############################################################################
# Edit this section for servers using FastCGI
# For FastCGI (or seeing the error message 'No input file specified.':
# add # to the start of the next line
RewriteBase /
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$
# For FastCGI (or seeing the error message 'No input file specified.':
# add # to the start of the next line and remove # from the line after)
RewriteRule ^.*$ - [E=BASE:%2]
#RewriteRule ^(.*)$ - [E=BASE:]
############################################################################
RewriteRule ^(.*)$ - [E=QS:mod_rewrite=on]
RewriteRule ^([^\/.]*)-single.php$ %{ENV:BASE}single.php?%{ENV:QS}&id=$1 [QSA,L]
RewriteRule ^([^\/.]*).css$ %{ENV:BASE}index.php?%{ENV:QS}&extension=css&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).js$ %{ENV:BASE}index.php?%{ENV:QS}&extension=js&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).gif$ %{ENV:BASE}index.php?%{ENV:QS}&extension=gif&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).png$ %{ENV:BASE}index.php?%{ENV:QS}&extension=png&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).jpg$ %{ENV:BASE}index.php?%{ENV:QS}&extension=jpg&name=$1 [QSA,L]
#RewriteCond %{QUERY_STRING} !mod_rewrite=on
#RewriteRule ^index.php$ %{ENV:BASE}index.php?%{ENV:QS} [QSA,L]
RewriteCond %{QUERY_STRING} !mod_rewrite=on
RewriteRule ^mobile.php$ %{ENV:BASE}mobile.php?%{ENV:QS} [QSA,L]
RewriteCond %{QUERY_STRING} !mod_rewrite=on
RewriteRule ^(.*)download.php %{ENV:BASE}download.php?%{ENV:QS} [QSA,L]
RewriteRule ^$ %{ENV:BASE}index.php?%{ENV:QS} [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ %{ENV:BASE}index.php?%{ENV:QS}&page=$1 [QSA,L]
</IfModule>
SetEnvIfNoCase User-Agent "spbot" bad_bots
<Limit GET POST HEAD>
Order Allow,Deny
Allow from all
Deny from env=bad_bots
</Limit>
# One month for most static assets
<filesMatch ".(css|jpg|jpeg|png|gif|js|ico)$">
Header set Cache-Control "max-age=2628000, public"
</filesMatch>
# Enable Compression
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
</IfModule>
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# Leverage Browser Caching
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
<IfModule mod_headers.c>
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
Header set Cache-Control "max-age=2678400, public"
</filesmatch>
<filesmatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, private, must-revalidate"
</filesmatch>
<filesmatch "\.(pdf)$">
Header set Cache-Control "max-age=86400, public"
</filesmatch>
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=2678400, private"
</filesmatch>
</IfModule>
thx in advance.
Best regards,
Oliver
Hi Charlie,
thanks again for your help!
In between I figured out that following code is working:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
I don't know how and why but works :-)
Now let's see how it affects google webmastertools ...
Best regards & thx again,
Oliver
Thank you Charlie for sharing your .htacces file.
Using:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
results in:
The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
This problem can sometimes be caused by disabling or refusing to accept cookies.
???
Best regards,
Oliver
Hello Charlie, thanks for your suggestion, unfortunately doesnt work for me.
My goal is, whatever I enter in the browsers address bar:
-mydomain.com-
-www.mydomain.com-
-http://mydomain.com-
-http://www.mydomain.com-
it should lead the visitor to: -https://mydomain.com-
Any further suggestions?
Thanks in advance.
Best regards,
Oliver
Hello Sirs,
I installed backlight with https.
In Google Webmaster tools I have registerd:
http://www.mydomain.com
http://mydomain.com
https://www.mydomain.com
https://mydomain.com <- prefered without www. / connected with Analytics
I am wondering if the following .htaccess is perfect, especially the last part:
----------------------------------------------------------------------------------------------------------------------------------------------
mod_gzip_on Yes
<IfModule mod_rewrite.c>
RewriteEngine On
############################################################################
# Edit this section for servers using FastCGI
# For FastCGI (or seeing the error message 'No input file specified.':
# add # to the start of the next line
RewriteBase /
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$
# For FastCGI (or seeing the error message 'No input file specified.':
# add # to the start of the next line and remove # from the line after)
RewriteRule ^.*$ - [E=BASE:%2]
#RewriteRule ^(.*)$ - [E=BASE:]
############################################################################
RewriteRule ^(.*)$ - [E=QS:mod_rewrite=on]
RewriteRule ^([^\/.]*)-single.php$ %{ENV:BASE}single.php?%{ENV:QS}&id=$1 [QSA,L]
RewriteRule ^([^\/.]*).css$ %{ENV:BASE}index.php?%{ENV:QS}&extension=css&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).js$ %{ENV:BASE}index.php?%{ENV:QS}&extension=js&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).gif$ %{ENV:BASE}index.php?%{ENV:QS}&extension=gif&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).png$ %{ENV:BASE}index.php?%{ENV:QS}&extension=png&name=$1 [QSA,L]
RewriteRule ^([^\/.]*).jpg$ %{ENV:BASE}index.php?%{ENV:QS}&extension=jpg&name=$1 [QSA,L]
#RewriteCond %{QUERY_STRING} !mod_rewrite=on
#RewriteRule ^index.php$ %{ENV:BASE}index.php?%{ENV:QS} [QSA,L]
RewriteCond %{QUERY_STRING} !mod_rewrite=on
RewriteRule ^mobile.php$ %{ENV:BASE}mobile.php?%{ENV:QS} [QSA,L]
RewriteCond %{QUERY_STRING} !mod_rewrite=on
RewriteRule ^(.*)download.php %{ENV:BASE}download.php?%{ENV:QS} [QSA,L]
RewriteRule ^$ %{ENV:BASE}index.php?%{ENV:QS} [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ %{ENV:BASE}index.php?%{ENV:QS}&page=$1 [QSA,L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L]
</IfModule>
---------------------------------------------------------------------------------------------------------------------------------------------
Thanks in advance.
Best regards,
Oliver
Hi Rod,
thank you for your prompt response :-)
You are right - everything is working again.
I contacted the host support before and the guy said that it must have something to do with my software ;-) HAHA
Best regards,
Oliver
Hello Sirs,
from one minute to the other Lightroom / publisher show following error message:
Unable to perform action: uploadRendition.
The server did not respond in the correct format.
Server response:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html> <head>
<title>200 OK</title>
</head> <body>
<h1>OK</h1>
<p>The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.</p>
</body> </html>
Any suggestions???
thank you in advance.
Best regards,
Oliver
Thank you Matt,
I will try that...
Best regards,
Oliver
Hi Matt,
I agree with Terry, please add the ability to set description meta tag for every page in version 1.2, and pleaseplease soon :-)
best regards,
Oliver
Thank you very much again Rod!
Best regards,
Oliver
Hello all,
I inserted an Album into a Page above the content.
Below appears the Pages copy.
I inserted an Album Set with its own page copy.
The Album Set shows up but neither a Page Copy of the top-level-gallery nor the page copy of the album set appears.
Is that normal???
Best regards,
Oliver
Thank you Rod & Daniel,
I will play around with it :-)
Best regards,oliver
Hi Daniel,
thanks for your prompt reply.
Thats exactly what I did:
function ttg_masthead_top( $style, $path ) {
echo '
<div class="trallala">
<h2><i class="fa fa-phone" aria-hidden="true"></i> <a href="tel:+trallala"> +trallala</a> <i class="fa fa-phone" aria-hidden="true"></i> <a href="tel:+trallala"> +trallala</a> <i class="fa fa-envelope-o" aria-hidden="true"></i> </i> <a href="mailto:blabla@tarllala.com">blabla@trallala.com</a></h2>
<a href="/">
<img src="http://trallala.com/backlight/designer/?c=page&a=image&p1=4" alt="TRALLALA PHOTOGRAPHY" class="identity_plate" width="224" height="44">
</a>
</div>
';
return false;
Do you have any idea how to get the contact information in one line with the identity-plate??? (id-plate is left, in the center of the masthead should be the contactinfo.
Best regards,
Oliver
Hi Rod,
thanks a lot for your reply!
I figured it out using phplugins to add contact information ABOVE the masthead.
May I ask how Daniel did it to add something INTO the masthead?
Best regards,
Oliver
Dear all,
as the subject says i am looking for a solution to insert an clickable email adress and a telephone number in the masthead.
Any suggestions?
Thank you in advance,
Oliver