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.

#1351 Re: General » Integration not perfect yet? » 2014-01-24 06:07:27

Your favicon shows up for me :-) 

Looks like all is fixed now. Favicon reference points to the correct file:

    <link rel="icon" type="image/x-icon" href="http://www.humarts.nl/favicon.png" />

#1352 Re: General » Problems with similar background » 2014-01-23 05:07:12

Hi Huub,

I just looked at the generated code and didn't find the standard /phplugins/css/custom.css stylesheet definition:

    <link rel="stylesheet" href="/phplugins/css/custom.css" />

But when you say you disabled it, then it shouldn't be visible on the home page either. Do you have two phplugins directories? The concept behind phplugins and custom.css is to have one unique configuration location that is used by all modules.

#1353 Re: General » Problems with similar background » 2014-01-23 04:40:42

When looking at the gallery, I don't see custom.css being used. Did you active phplugins when you created the gallery template?

#1354 Re: General » Server Rendering Delay » 2014-01-12 06:35:19

Russ called my last night: He is working on a friend's site. Looking at the gallery.xml files, they don't show the same thumbnail sizes. So in this case, it is not a matter of displaying in the browser, but of publishing I think.

#1355 Re: General » Getting started » 2014-01-09 06:48:00

With B&G, you don't need Stages as separate pages can be created from within Wordpress. A slideshow on the front page can be created in Wordpress as well.

#1356 Re: General » Drop down vertical menus. » 2013-12-30 05:32:00

I created my submenus with conditional code; when I am on a gallery page, I show the gallery submenu.

Following code fragment shows the principle:

// SITE-WIDE NAVIGATION MENU
function ttg_header_navigation( $style, $path ) { 
    echo '
    <div id="navigation" class="tab-content clearfix">
    <div class="mantle clearfix">
        <div class="core clearfix">
        <ul class="my_menu clearfix">
            <li><a href="/galleries.php">Galleries</a>
                ';
                if ((G_STYLE == 'CE3-PAGES-GALLERIES' && CURRENTPAGENAME == 'galleries.php')
                    || 
                    (( G_STYLE == 'CE3-GALLERY' || G_STYLE == 'CE3-AUTOINDEX') && strlen(strstr(CURRENTPAGEURL,'/galleries/'))>0) 
                   )
                {
                        echo '<ul class="my_sub_menu clearfix">';
                        //
                        // Here goes the sub-menu code
                        //
                        echo '</ul>';
                }
            echo '/li>';

            echo '
            <li><a href="/about.php">About</a></li>
            <li><a href="/contact.php">Contact</a></li>
            ';

        echo '
        </ul>
        </div>
    </div>
    </div> 
    ';

    return false;        // Replaces normal menu
} // END

Board footer

Powered by FluxBB