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.
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" />
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.
When looking at the gallery, I don't see custom.css being used. Did you active phplugins when you created the gallery template?
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.
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.
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