Content not link up to own website

The place to talk about things that are related to CMS Made simple, but don't fit anywhere else.
Post Reply
karen1002
New Member
New Member
Posts: 3
Joined: Thu Jan 09, 2014 5:49 am

Content not link up to own website

Post 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!
staartmees
Power Poster
Power Poster
Posts: 1049
Joined: Wed Mar 19, 2008 4:54 pm

Re: Content not link up to own website

Post 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
User avatar
velden
Dev Team Member
Dev Team Member
Posts: 3497
Joined: Mon Nov 28, 2011 9:29 am

Re: Content not link up to own website

Post 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.
karen1002
New Member
New Member
Posts: 3
Joined: Thu Jan 09, 2014 5:49 am

Re: Content not link up to own website

Post 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!!
karen1002
New Member
New Member
Posts: 3
Joined: Thu Jan 09, 2014 5:49 am

Re: Content not link up to own website

Post 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}
inyerface
Forum Members
Forum Members
Posts: 191
Joined: Mon Nov 26, 2007 4:46 pm

Re: Content not link up to own website

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Content not link up to own website

Post 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...
Post Reply

Return to “The Lounge”