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.
Wow, you have good eyes, Matt!
Did you try with the default pricing category?
data-price=“default”
In this case make 2012, 2013, 2014 Albums instead of Album Sets.
So far I haven't received any spam via the CE4 contact form. With CE3, I got several emails a day. Hopefully it will stay like that!
Rod, the quotes around Harris Hawks define the search term as "Harris Hawks" instead of "Harris" or "Hawks". So "+Harris Hawks" and +Harris Hawks provide different results.
Hi Charles,
Adding custom CSS code is done on your web server and not in the lrwebinge on your computer. Please see http://ce4.theturninggate.net/docs/doku … custom_css and for more about phplugins http://ce4.theturninggate.net/docs/doku … _phplugins.
I would do a new ttg-be installation so that you have a clean site. Eg http://monsterbooths.com/ttg-be/index.php dates back to your initial installation.
Posting your phplugins.php code would help identifying the cause.
As a quick fix, you can use 'URL encoding' for the embedded parenthesis:
[Gardelegen War Crime Wikipedia](http://en.wikipedia.org/wiki/Gardelegen_%28war_crime%29)
Great! Thank you all for your feedback!
Did you put the TTG BE in the subdirectory /ttg-be?
Did someone already try CE4 Theme for WP with the new Wordpress 4.0? Curious to see if the two work together out of the box. Thanks!
Yes, it points to the correct file now.
If you are adding your own images, you can place them wherever it makes sense to you. I use /pics on my site.
And a link to the page with the error is always helpful.
The path to the CSS file should start with a '/'.
It is always helpful to post a link to your test site in order to be able to identify setup issues. But I found your test site...
The phplugins path should be the one reported by http://www.yourdomain.com/webtest/phplugins/path.php. But since you are in a subdirectory, you have to adjust the CSS path inside phplugins.php as well.
So instead of
function ttg_head_end( $style, $path ) {
echo ' <link rel="stylesheet" type="text/css" media="screen" href="/phplugins/css/custom.css" />';
}
use
function ttg_head_end( $style, $path ) {
echo ' <link rel="stylesheet" type="text/css" media="screen" href="/webtest/phplugins/css/custom.css" />';
}
That's one of the reasons I create subdomains for my test installations instead of using a subdirectory.
Michael: I would try to include the CLI css in phplugins as well as I indicated in #26.
Tom: it might work.... didn't had time today to double check it.
Hi Tom,
I just realized that in my test code, I had included the original cookie-law-info style sheet but forgot to add it to the code I showed you...
function ttg_canvas_bottom( $style, $path){
echo '
<link rel="stylesheet" id="cookielawinfo-style-css" href="http://tomowens.openpoint.co.uk/blog/wp-content/plugins/cookie-law-info/css/cli-style.css?ver=3.9.2" type="text/css" media="all" />
<script type="text/javascript" src="http://tomowens.openpoint.co.uk/blog/wp-content/plugins/cookie-law-info/js/cookielawinfo.js?ver=3.9.2"></script>
<script type="text/javascript">
...
Cheers
Great that it works now, Tom!
Sorry, I misunderstood what you said....
It looks like we have to add the z-index to the notification bar too:
#cookie-law-info-again {
z-index: 1;
}
#cookie-law-info {
display: none;
z-index: 1;
}
Hi Tom,
Your code looks good and it works on my desktop using Google Chrome. But it looks like your site just went down when I wanted to try it in a different browser.
Cheers
Daniel
Hi Tom,
Finally I found why the small pop-up hides behind the footer. I tried it before but then I used the wrong element... bummer.
You need to add 'z-index: 1;' to #cookie-law-info-again to move it upfront. On mobile I noticed, that often the info notice showed instead of the small pop-up.
Please add following to phplugins/css/custom.css (this assumes that you already have custom.css enabled):
#cookie-law-info-again {
z-index: 1;
}
#cookie-law-info {
display: none;
}
If you want to move it a bit out of the way, there are two assignments in the original javascript code:
showagain_x_position: 100px
showagain_x_position: right
Changing it to 10px moved it to the side without being blocked by the scrollbar. Or moving to the left works too.
Have fun!
Thank you for your feedback, Dave. Some custom CSS is needed and I modified the php code a bit too. Please head over to my blog to get the latest versions.
Thank you all for your kind words and your feedback.
Dave: I just published how to create the breadcrumbs for CE4 Pages. Autoindex is not supported out of the box as this is very user specific. Here is the link http://danielleu.com/blog/2014/08/breadcrumbs-ce4/.
Great! It looks nice now. I have to think about dividing my about page in subpages....