Page 1 of 1
Content not link up to own website
Posted: Thu Jan 09, 2014 5:55 am
by karen1002
our CMS version is 1.6.4, very old one. we did not use word press.
The main problem we facing now is when we create a sub category and select 'Fortessa' as our parent.It only show the parent name 'Fortessa' but not any sub-categories.
so in that case we can't list out our images by different categories on our web site.
Do you know where the problem is?
thank you so much!
Re: Content not link up to own website
Posted: Thu Jan 09, 2014 8:15 am
by staartmees
1.6.4 is way to old and is no longer supported, so you must upgrade your system and modules to the newest version.
http://docs.cmsmadesimple.org/upgrading/old-versions
Re: Content not link up to own website
Posted: Thu Jan 09, 2014 8:54 am
by velden
Besides that it's an old version, it's not clear what you mean exactly by 'we create a sub category'.
Are you trying to add an extra content page? Or are you using a module that supports categories.
If you added a content page and it's not visible in the menu then it is possible that:
The menu tag in the template has a parameter that limits the number of levels displayed. Eg {menu number_of_levels=1}
I typically use that parameter when a customer did not ask for a multi-level menu and thus I did not prepare the menu to display multi levels (as of course it often needs extra effort to make for example a dropdown menu work with javascript and css)
Other possibility is that the menu part is in the html source but the styling hides it/prevents it from being displayed properly. Again because the website builder would need to have that prepared.
Re: Content not link up to own website
Posted: Mon Jan 13, 2014 4:32 am
by karen1002
Hi,
Please forget that 2 previous reply which i submit it wrong. ok here are the problem details:
what we want is showing our product images by categories on website.
1. We got no problem to create any sub categories under ' Product Hierarchy ' as below:
Fortessa-Tableware solutions
>Fortaluxe superwhite
>>Miscellianious
>Fine Bone China
>>Spirale
2.Then we want to show range of images under each sub-categories.(e.g.Spirale)
But when we go on to web
site,
http://philliplazarus.com.au/foodservic ... s/fortessa
only Fortessa-Tableware solutions appear on product page, with all the images in one page, NOT BY CATEGORIES. Fortaluxe superwhite , spirale etc are not showing on the website at all!
So is that related to the parameter?
I just attached a coding file from 'brand product menu' in file comment,i am not sure is that related to this. Please have a look.
P.S.1.will this be solved if we upgrade our version?
2.am i able to give you the log in details, so you may able to look into more details?
thank you!!
Re: Content not link up to own website
Posted: Mon Jan 13, 2014 4:35 am
by karen1002
Copy from Product brand menu :
{* CSS classes used in this template:
#menuwrapper - The id for the <div> that the menu is wrapped in. Sets the width, background etc. for the menu.
#primary-nav - The id for the <ul>
.menuparent - The class for each <li> that has children.
.menuactive - The class for each <li> that is active or is a parent (on any level) of a child that is active. *}
{if $count > 0}
<ul id="secondary-nav">
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="<ul>" times=$node->depth-$node->prevdepth}
{elseif $node->depth < $node->prevdepth}
{repeat string="</li></ul>" times=$node->prevdepth-$node->depth}
</li>
{elseif $node->index > 0}</li>
{/if}
{if $node->parent == true or ($node->current == true and $node->haschildren == true)}
<li class="menuactive menuparent"><a class="menuactive menuparent"
{elseif $node->current == true}
<li class="menuactive"><a class="menuactive"
{elseif $node->haschildren == true}
<li class="menuparent"><a class="menuparent"
{elseif $node->type == 'sectionheader'}
<li class="sectionheader"><span> {$node->menutext} </span>
{elseif $node->type == 'separator'}
<li style="list-style-type: none;"> <hr class="separator" />
{else}
<li><a
{/if}
{if $node->type != 'sectionheader' and $node->type != 'separator'}
href="{$node->url}" {if $node->accesskey != ''}accesskey="{$node->accesskey}" {/if}{if $node->tabindex != ''}tabindex="{$node->tabindex}" {/if}{if $node->titleattribute != ''}title="{$node->titleattribute}"{/if}{if $node->target ne ""} target="{$node->target}"{/if}>> {$node->menutext}</a>
{elseif $node->type == 'sectionheader'}
>{$node->menutext}</a>
{/if}
{/foreach}
{repeat string="</li></ul>" times=$node->depth-1} </li>
</ul>
{/if}
Re: Content not link up to own website
Posted: Sun Feb 16, 2014 2:14 am
by inyerface
Hello,
Your Hierarchy currently works the way I want mine to!! Can you share the Hierarchy Template?
http://philliplazarus.com.au/foodservic ... s/fortessa
Thanks!
Mitch
Re: Content not link up to own website
Posted: Sun Feb 16, 2014 7:47 pm
by Dr.CSS
The code you pasted is from the menu manager not Products so you may need to explain in more detail what it is you are trying to accomplish...