Announcement

Collapse
No announcement yet.

Bug (I think!)

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

    Bug (I think!)

    Hi guys,

    I'm trying to only allow one address per order but for some reason it's not working. I followed the help in actinic called "Only allowing one address per order" but it doesn't seem to work. The point I'm getting stuck on is point 4:

    "4. In 'Design | Text | Web Site (cont) | Invoice Address' change 'Invoice Address' to 'Address' and un-select the 'If you want to ship the purchase to an address other than...' box to prevent that question from being asked."

    The bit where it says un-select "If you want...". This is already un-selected but when I tried the website the option is still there (yes, I emptied my cache etc). The website is www.euroschools.co.uk. It seems like a bug. The only way around it I think is to delete it from the script (although it's not ideal).

    Can anyone help?
    Thanks
    Rob Jones
    Web Designer
    Blueprint IT Limited
    <a href="http://www.blueprintit.co.uk/view/31">www.BlueprintIT.co.uk</a>

    <a href="http://www.blueprintit.co.uk/view/31" target="_blank"><img src="http://www.iso-land.com/BlueprintITForumLogo.jpg" alt="Custom Website Design & Proactive Computer Support" width="350" height="106" border="0"></a>
    Visit Blueprint IT for custom website design and e-commerce solutions.

    #2
    I've also done the dreaded website purge and refresh and still no luck.

    Thanks
    Rob Jones
    Web Designer
    Blueprint IT Limited
    <a href="http://www.blueprintit.co.uk/view/31">www.BlueprintIT.co.uk</a>

    <a href="http://www.blueprintit.co.uk/view/31" target="_blank"><img src="http://www.iso-land.com/BlueprintITForumLogo.jpg" alt="Custom Website Design & Proactive Computer Support" width="350" height="106" border="0"></a>
    Visit Blueprint IT for custom website design and e-commerce solutions.

    Comment


      #3
      Can anyone confirm if this is a bug? I really don't want to hard code it if I don't have to but at the moment I haven't got a choice.

      Thanks
      Rob Jones
      Web Designer
      Blueprint IT Limited
      <a href="http://www.blueprintit.co.uk/view/31">www.BlueprintIT.co.uk</a>

      <a href="http://www.blueprintit.co.uk/view/31" target="_blank"><img src="http://www.iso-land.com/BlueprintITForumLogo.jpg" alt="Custom Website Design & Proactive Computer Support" width="350" height="106" border="0"></a>
      Visit Blueprint IT for custom website design and e-commerce solutions.

      Comment


        #4
        Hi Rob, this is a bug I'm afraid. The way to fix it is to...
        1. Go to the 'Design' tab.
        2. Change the 'Select Page Type' drop down list to read 'Checkout Page 0'
        3. CLick on the 'If you want to ship...' text in the preview. In the layout code this should highlight a variable called 'InvoicePrompt016'
        4. Two lines above that you should see a green 'block' - note that this isn't a 'block if'. Highlight this.
        5. Click the [><] icon at the top left of the layout code window to show all the underlying code.
        6. Change
          Code:
          <actinic:block name="IsLocationInvoiceShipSeparately">
          to
          Code:
          <actinic:block if="IsLocationInvoiceShipSeparately">
        That should do it.

        Comment


          #5
          Originally posted by cdicken
          Hi Rob, this is a bug I'm afraid. The way to fix it is to...
          1. Go to the 'Design' tab.
          2. Change the 'Select Page Type' drop down list to read 'Checkout Page 0'
          3. CLick on the 'If you want to ship...' text in the preview. In the layout code this should highlight a variable called 'InvoicePrompt016'
          4. Two lines above that you should see a green 'block' - note that this isn't a 'block if'. Highlight this.
          5. Click the [><] icon at the top left of the layout code window to show all the underlying code.
          6. Change
            Code:
            <actinic:block name="IsLocationInvoiceShipSeparately">
            to
            Code:
            <actinic:block if="IsLocationInvoiceShipSeparately">
          That should do it.
          Thanks Chris, it worked. My buying process is much cleaner and easier now, hurray.

          Thanks again.
          Rob Jones
          Web Designer
          Blueprint IT Limited
          <a href="http://www.blueprintit.co.uk/view/31">www.BlueprintIT.co.uk</a>

          <a href="http://www.blueprintit.co.uk/view/31" target="_blank"><img src="http://www.iso-land.com/BlueprintITForumLogo.jpg" alt="Custom Website Design & Proactive Computer Support" width="350" height="106" border="0"></a>
          Visit Blueprint IT for custom website design and e-commerce solutions.

          Comment

          Working...
          X