Community @ The Turning Gate

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.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1302 Re: CE4 Gallery » Write-in Purchase Buttons for CE4? » 2014-11-14 11:00:03

Did you try with the default pricing category?

data-price=“default”

#1303 Re: CE4 Publisher » How do I publish a set of Albums within a folder in CE4? » 2014-11-13 04:09:18

In this case make 2012, 2013, 2014 Albums instead of Album Sets.

#1304 Re: General » Spam prevention » 2014-11-05 03:32:45

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!

#1305 Re: CE4 Publisher » Client Response Gallery - Search » 2014-10-30 03:54:39

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.

#1306 Re: CE4 Gallery » How do I change cell number size and make labels show up on thumbnails » 2014-10-18 08:02:43

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.

#1307 Re: General » Error in Internet Explorer » 2014-10-07 03:36:57

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.

#1308 Re: CE4 Pages » Unwanted Text at bottom of Homepage » 2014-10-02 03:48:28

Posting your phplugins.php code would help identifying the cause.

#1309 Re: General » Markdown backslash escape not working » 2014-09-18 04:55:45

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)

#1310 Re: CE4 Theme for WordPress » Wordpress 4.0, anyone? » 2014-09-12 02:18:01

Great! Thank you all for your feedback!

#1311 Re: CE4 Pages » TTG Admin page comes up » 2014-09-11 13:59:00

Did you put the TTG BE in the subdirectory /ttg-be?

#1312 CE4 Theme for WordPress » Wordpress 4.0, anyone? » 2014-09-11 13:56:28

Daniel Leu
Replies: 4

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!

#1314 Re: CE4 Pages » Side Bar HTML editing question » 2014-08-17 03:21:39

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.

#1316 Re: PHPlugins (CE4) » Is it possible to test PHPlugins and custom CSS in sub-directory? » 2014-08-17 01:42:39

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.

#1317 Re: PHPlugins (CE4) » Global Cookie Control » 2014-08-16 09:32:09

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.

#1318 Re: PHPlugins (CE4) » Global Cookie Control » 2014-08-16 01:13:34

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

#1320 Re: PHPlugins (CE4) » Global Cookie Control » 2014-08-15 02:42:50

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;
}

#1321 Re: PHPlugins (CE4) » Global Cookie Control » 2014-08-15 00:59:56

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

#1322 Re: PHPlugins (CE4) » Global Cookie Control » 2014-08-14 23:59:01

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!

#1323 Re: CE4 Showcase » Yet an other CE4 site » 2014-08-14 04:59:26

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.

#1324 Re: CE4 Showcase » Yet an other CE4 site » 2014-08-13 16:03:20

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/.

#1325 Re: CE4 Pages » Drop-down navigation question » 2014-08-13 15:15:44

Great! It looks nice now. I have to think about dividing my about page in subpages....

Board footer

Powered by FluxBB