Here is a page within the site: http://theewartgroup.info/resources/newsletter//home/content/19/8625219/html/lib/smarty/Smarty.class.php:1593 - trigger_error
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1415 - _fetch_resource_info
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1261 - _compile_resource
/home/content/19/8625219/html/index.php:268 - fetch
string(51) "Smarty error: unable to read resource: "tpl_top:-1"" /home/content/19/8625219/html/lib/smarty/Smarty.class.php:1593 - trigger_error
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1415 - _fetch_resource_info
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1261 - _compile_resource
/home/content/19/8625219/html/index.php:270 - fetch
string(52) "Smarty error: unable to read resource: "tpl_head:-1"" /home/content/19/8625219/html/lib/smarty/Smarty.class.php:1593 - trigger_error
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1415 - _fetch_resource_info
/home/content/19/8625219/html/lib/smarty/Smarty.class.php:1261 - _compile_resource
/home/content/19/8625219/html/index.php:269 - fetch
string(52) "Smarty error: unable to read resource: "tpl_body:-1""
Here is the Section Header link: http://theewartgroup.info/resources/
Can anyone shed light on this for me? Do I have to adjust something within my Menu Manager template (listed below):
Code: Select all
{assign var='number_of_levels' value=10000}
{if isset($menuparams.number_of_levels)}
{assign var='number_of_levels' value=$menuparams.number_of_levels}
{/if}
{if $count > 0}
<div id="menuwrapper">
<ul id="primary-nav">
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string='<ul class="unli">' times=$node->depth-$node->prevdepth}
{elseif $node->depth < $node->prevdepth}
{repeat string='</li><li class="separator once" style="list-style-type: none;"> </li></ul>' times=$node->prevdepth-$node->depth}
</li>
{elseif $node->index > 0}</li>
{/if}
{if $node->parent == true or $node->current == true}
{assign var='classes' value='menuactive'}
{if $node->parent == true}
{assign var='classes' value='menuactive menuparent'}
{/if}
{if $node->children_exist == true and $node->depth < $number_of_levels}
{assign var='classes' value=$classes|cat:' parent'}
{/if}
{if $node->type == 'sectionheader'}
<li class="{$classes}"><a class="{$classes}"><span class="sectionheader">{$node->menutext}</span></a>
{else}
<li class="{$classes}"><a class="{$classes}"
{/if}
{elseif $node->type == 'sectionheader' and $node->haschildren == true}
<li><a ><span class="sectionheader">{$node->menutext}</span></a>
{elseif $node->type == 'sectionheader'}
<li><a ><span class="sectionheader">{$node->menutext}</span></a>
{elseif $node->type == 'separator'}
<li style="list-style-type: none;"> <hr class="menu_separator" />
{elseif $node->children_exist == true and $node->depth < $number_of_levels and $node->type != 'sectionheader' and $node->type != 'separator'}
<li class="menuparent"><a class="menuparent"
{else}
<li>
<a
{/if}
{if $node->type != 'sectionheader' and $node->type != 'separator'}
{if $node->target}target="{$node->target}" {/if}
href="{$node->url}"><span>{$node->menutext}</span></a>
{/if}
{/foreach}
{repeat string='</li><li class="separator once" style="list-style-type: none;"> </li></ul>' times=$node->depth-1}
</li>
</ul>
<div class="clearb"></div>
</div>
{/if}