Nu zag ik dat er in Gallery nog een aantal fouten zit:
De aangepaste codes werken.Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
Kajuitramen
Kajuitramen
Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
Errorlog server
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
[30-Mar-2017 14:25:48 UTC] PHP Notice: Undefined index: pid in /home/efacti/public_html/uisge-beatha.eu/www/tmp/templates_c/Gallery^1eefdc88d1634b3a1d36be5351d15c63baf61534.module_db_tpl.Gallery;Floatbox_SocMedia.php on line 154
Code: Select all
{if $imagecount != 0}
Code: Select all
{if !empty($imagecount)}
Code: Select all
{if $entry->canonical}
{assign var='canonical' value=$entry->canonical}
{/if}
{$canonical}
Code: Select all
{if (isset($entry->canonical))}
{assign var='canonical' value={$entry->canonical}}
{/if}
{$canonical}
De code van de UDT 'canonical' is:
Code: Select all
global $gCms;
if ($gCms->variables['page_name'] !='') {
$manager =& $gCms->GetHierarchyManager();
$node =& $manager->sureGetNodeByAlias($gCms->variables['page_id']);
$content =& $node->GetContent();
if (isset($content) && is_object($content))
{
if ($content->GetURL() != '')
{
echo '<link rel="canonical" href="'.$content->GetURL().'" />';
}
}
}
Code: Select all
{if $smarty.get.pid && $smarty.get.pid == $image->fileid}
Code: Select all
{if isset($smarty.get.pid) AND $smarty.get.pid == $image->fileid}