The only modules I installed in addition to defaults are:
cart made simple, payment made simple, and shop made simple.
I wanted to show children of certain parent in different part of the site.
I followed the instructions here: http://wiki.cmsmadesimple.org/index.php ... Ehierarchy
made a new template "show_children_of"
Code: Select all
<h2>Pages</h2>
<ul class="menu_horiz">
{if $count > 0}
{foreach from=$nodelist item=node}
{if $node->index == 0}
{assign var="icon" value="house"}
{elseif $node->haschildren == true }
{assign var="icon" value="folder"}
{elseif $node->haschildren == false }
{assign var="icon" value="page"}
{/if}
{if $node->index != 0}
<li style="list-style-image: url('/images/icons/{$icon}.png') ">
<a href="{$node->url}"{if $node->target ne ""} target="{$node->target}"{/if}>{$node->menutext}</a><br />
{$node->titleattribute}</li>
{/if}
{/foreach}
{/if}
</ul>
Code: Select all
{cms_module module='menumanager' start_page="auto-shop" template='show_children_of'}
Code: Select all
string(83) "Smarty error: unable to read resource: "module_db_tpl:MenuManager;show_children_of""
Anyone knows how to fix this or what I did wrong?
Thanks