Announcement

Collapse
No announcement yet.

section level on top level section list

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    section level on top level section list

    I know its Easter and I know im probably being a muppet but Ive been struggling with this for hours and I know someone out there will give me the answer in 2 minutes so.....
    .
    My brochure and catalog pages are smart theme - including TopLevelSectionLink. The parent sections (Level 1 - sections directly under the online catalogue) are showing fine in the top left of pages.
    How can I get, for example, Section Level 2 to also show.

    #2
    You need to use the block statements (not the blockif's)

    To save hassle and time, your probably better purchasing one of Norman's patches
    http://www.drillpine.biz/actinicstuff/index.html
    "If my answers frighten you then you should cease asking scary questions"

    Comment


      #3
      Thanks but I dont understand. The code I think I need to look at is Section Name Only Section Link which is:-
      Code:
      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsSectionIncludedInSiteMap%22%20%2f%3e" >
      <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" class="product_section">
         <Actinic:Variable Name="SectionName"/>
      </a>	
      </actinic:block>
      .
      Im trying to understand why just the top level sections are passed and how I can either pass other sections or at least get it to refer to other section (ie. sectionlevel=2).
      Thx

      Comment


        #4
        OK...
        Post this under that code you pasted
        Code:
        <actinic:block type="ChildSectionList" >
        <a href="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>" class="product_section">
           - <Actinic:Variable Name="SectionName"/>
        </a>
        </actinic:block>
        Your basically pulling another list into the layout here.
        So the first bit of code goes through the main list, then the second bit of code goes through the child section list.
        "If my answers frighten you then you should cease asking scary questions"

        Comment


          #5
          Thanks. Works perfefct.

          Comment

          Working...
          X