Announcement

Collapse
No announcement yet.

Show all products

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

    Show all products

    I'm trying to create a section called "ALL" where it shows all products.

    I did create the top section, then added a fragment and placed code inside:

    !!<
    <actinic:block type="EntireSectionList">
    <actinic:block type="ProductList">
    [ProductLayout]
    </actinic:block>
    </actinic:block>
    >!!

    as per previous Norman's post.

    Now the products appear as inside the "Product Page" and not as inside the "Section page".

    I attach how I want them to show and how they are currently showing.
    How do i add a Section list or something that products appear three per line on this "ALL" section?

    Thanks...
    Attached Files
    www.grafea.co.uk
    Vintage Leather briefcases

    http://www.grafea.com
    Designer leather bags
    --------------------------
    Yanni Kioupouroglou

    #2
    When you put code within a Fragment, it can only do basic things. You won't be able to specify a particular product layout.

    Instead, copy the Fragment Layout, replace all code in the copy with e.g:
    Code:
    <actinic:block type="EntireSectionList">
    	<actinic:block type="ProductList">
    		<actinic:block if="%3cactinic%3avariable%20name%3d%22ProductType%22%20%2f%3e%20%3d%3d%200" >
    			<actinic:variable name="ProductLayout" value="Product Summary" />
    		</actinic:block>
    	</actinic:block>
    </actinic:block>
    Then use that customised Fragment Layout for just this item.

    We're using the Product Summary here (amend to suit) and I've added an extra block so that Duplicates and Fragments don't show.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Great thanks,

      Done that, it works and I guess I can customise the product layout to suit me.
      However as this page displays products and not sections, can I make on this page the Product title or the product Image a link that will take you to the full product page/description?



      Thanks..
      www.grafea.co.uk
      Vintage Leather briefcases

      http://www.grafea.com
      Designer leather bags
      --------------------------
      Yanni Kioupouroglou

      Comment


        #4
        I'm trying to create a section called "ALL" where it shows all products.
        No mention of links in your original post.

        Try:
        Code:
        <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>" target="_self">
        IMAGE OR NAME HERE
        </a>
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X