Announcement

Collapse
No announcement yet.

Editing The Shopping Cart

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

    Editing The Shopping Cart

    Hi there,

    I was wondering if it is possible to insert a message into the shopping cart page that will only appear in the shopping cart page and not the other checkout pages. I am trying to find a way to assign a layout name to the shopping cart that will prevent the other checkout pages from including the content I am adding to the shopping cart page. Is this possible?

    Sorry if the question is not very clear.

    Many thanks

    brookbab
    http://www.pictureyourlife.co.uk
    http://www.coinwatch.co.uk

    #2
    Yup

    design | shopping cart and select the cart inner area NOT the overall outer layer.
    Affordable solutions for busy professionals.
    Website Maintenance | UK Web Hosting

    Comment


      #3
      Thats great thanks alot !
      http://www.pictureyourlife.co.uk
      http://www.coinwatch.co.uk

      Comment


        #4
        You could also create a page layout and register it specifically for your cart/checkout area too if you so wished.

        Don't you just love V8 versatility...

        Regards
        Affordable solutions for busy professionals.
        Website Maintenance | UK Web Hosting

        Comment


          #5
          Some useful; blockif's for the cart and checkout:

          Code:
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Shopping%20Cart%22" >
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%200%22" >
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%201%22">
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%202%22">
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Checkout%20Page%203%22" >
          <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Receipt%22" >
          Or more readably:

          Code:
          <actinic:variable name="PageType" /> == "Shopping Cart"
          <actinic:variable name="PageType" /> == "Checkout Page 0"
          <actinic:variable name="PageType" /> == "Checkout Page 1"
          <actinic:variable name="PageType" /> == "Checkout Page 2"
          <actinic:variable name="PageType" /> == "Checkout Page 3"
          <actinic:variable name="PageType" /> == "Receipt"

          Comment

          Working...
          X