I am creating an Actinic website at the moment that uses a bespoke layout and product navigation elements that are split into two lists - shop by section and by brand (nav elements on the left). It is up on trials server at:-
http://trials.actinic.com/trials/trial49615/
Once I am in a product section (Boys Clothing as current example), I can list all of that Parent Section's children within the sub-menu appearing at the top of the main column (in this example 'Jumpers' & 'Trousers') using the following code:-
<ul>
<actinic:block type="ParentSectionList" ><li><actinic:variable Name="SectionName"/> </li></actinic:block>
<actinic:block type="ChildSectionList" ><li>><a href="<actinic:variable Name="SectionPageName"/>"><actinic:variable Name="SectionName"/></a></li></actinic:block>
</ul>
OK - all fine so far.
The problem I have is that I want to KEEP the sub menu as it appears here on the subsequent pages - i.e. when viewing Jumpers / Trousers products list & when viewing the extended info page. At present it just shows the page's parent section list - 'Jumpers' for the jumpers page & 'Trousers' for the trousers page...
Is there an easy way of doing this? Perhaps a blockif condition I could use around the code above so that for all product pages the sub menu displayed maintains that product sections' product sub section list?
Thanks for any help, hope this isn't totally confusing.
Chris
http://trials.actinic.com/trials/trial49615/
Once I am in a product section (Boys Clothing as current example), I can list all of that Parent Section's children within the sub-menu appearing at the top of the main column (in this example 'Jumpers' & 'Trousers') using the following code:-
<ul>
<actinic:block type="ParentSectionList" ><li><actinic:variable Name="SectionName"/> </li></actinic:block>
<actinic:block type="ChildSectionList" ><li>><a href="<actinic:variable Name="SectionPageName"/>"><actinic:variable Name="SectionName"/></a></li></actinic:block>
</ul>
OK - all fine so far.
The problem I have is that I want to KEEP the sub menu as it appears here on the subsequent pages - i.e. when viewing Jumpers / Trousers products list & when viewing the extended info page. At present it just shows the page's parent section list - 'Jumpers' for the jumpers page & 'Trousers' for the trousers page...
Is there an easy way of doing this? Perhaps a blockif condition I could use around the code above so that for all product pages the sub menu displayed maintains that product sections' product sub section list?
Thanks for any help, hope this isn't totally confusing.
Chris
Comment