Announcement

Collapse
No announcement yet.

Site Map

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

    Site Map

    I am using the 'Vertical Nav Bar Images' layout. Within this layout I can see the 'Site Map Image Navigation Button' within an Actinic condition block. However, the Site Map navigation button is not displayed. Is this because of the Actinic condition? What do I change to make it display?

    As you can see, I have not got to gripps with understanding the Actinic conditions!

    Also how do I change the order of display of the navigation buttons in the left sidebar?

    Regards Gordon

    PS I think I have read the answers to the above somewhere but I can't remember where!

    #2
    to make the sitemap appear on all pages, remove the block conditions either side of it.

    Comment


      #3
      Still Can Not Get Sitemap Nav To Display

      Commented out the two actinic:block conditions before and the two after:

      <actinic:variable value="Sitemap Image Navigation Button" name="NavigationIcon" /><br />

      But Sitemap does not display. In fact nothing changes!

      In Settings | Site Options | Links the 'Include Sitemap Navigation Icon' is set to true. Does this not mean that the Sitemap Navigation Icon should be displayed?

      I also still have not figured out how to change the order of the left Nav buttons.

      Can anyone help me?

      Regards Gordon

      Comment


        #4
        Gordon - I'm surprised that did not work. Please find below the code for an edited 'Vertical Nav Bar Images' layout, with the unnecessary conditionality all removed:
        Code:
        <div align="center">
        <table cellpadding="0" cellspacing="0" border="0">
           <tr>
              <td><img src="theme_navbar_top.gif" alt="Navigation bar top" /></td>
           </tr>
           <tr>
              <td align="center" style="background-image:url('theme_navbar_background.gif');">
        
        	      <actinic:variable value="Home Image Navigation Button" name="NavigationIcon" /><br />
        
        	      <actinic:variable value="Sitemap Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" >
                    <actinic:block if="%3cactinic%3avariable%20name%3d%22SectionLevel%22%20%2f%3e%20%3e%200">
        	            <actinic:variable value="Up A Level Image Navigation Button" name="NavigationIcon" /><br />
        			   </actinic:block>
        			</actinic:block>
                 <actinic:block if="%3cactinic%3avariable%20name%3d%22IsNavBarTopSectionOmitted%22%20%2f%3e%20%21%3d%20TRUE" >
                    <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Store%20Front%20Page%22%29" >
        	            <actinic:variable value="Store Top Image Navigation Button" name="NavigationIcon" /><br />
        	         </actinic:block>
                 </actinic:block>
        	      <actinic:variable value="Terms Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:variable value="Search Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:variable value="View Cart Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:variable value="Checkout Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:variable value="Contact Us Image Navigation Button" name="NavigationIcon" /><br />
                 <actinic:block if="%3cactinic%3avariable%20name%3d%22AreRegCustomersAllowed%22%20%2f%3e">
        				<Actinic:NOTINB2B>
        				<actinic:variable value="Login Image Navigation Button" name="NavigationIcon" /><br />
        				</Actinic:NOTINB2B>
                 </actinic:block>
              </td>
           </tr>
           <tr>
              <td><img src="theme_navbar_bottom.gif" alt="Navigation bar bottom" /></td>
           </tr>
        </table>
        </div>
        To change the order of items in the navigation bar, simply re-organise the pink 'layout selectors' that are in the layout. Move them into the order that you want.

        Comment


          #5
          Thanks Chris

          Must have had a mental block with this one!

          Deleted the Actinic condition blocks round the site map and it is now displayed and working on every page - as I wanted. Either commenting out Actinic conditions does not work or (more likely) I 'screwed up' the commenting out.

          Rearranging changes the order as you suggested - should have seen this!

          Sorry for bothering you with this - should have been able to sort it out my self.

          Thanks again Gordon

          Comment

          Working...
          X