Announcement

Collapse
No announcement yet.

checkout prompts not showing

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

    checkout prompts not showing

    I've added the following General Info prompts see attached image.

    But they do not appear in the checkout

    rannoch-smokery.co.uk/acatalog

    i've refreshed the site, said layouts are factory defaults
    Attached Files

    #2
    weird eh!

    i only got the prompt beside the new drop down for delivery date to work by removing the actinic variable and replacing it with the hard coded text.

    Likewise the headings on the terms and conditions no longer work , i have to hard code these in place of variables

    Comment


      #3
      Jo, don't know if this will help, but try ticking the "Show All" box on the General Info Tab.
      Brian
      www.flowergallery.co.uk
      Same day flower delivery to UK
      Same day flower delivery to Republic of Ireland
      International Flower Delivery

      Located in Argyll, Scotland, UK

      Comment


        #4
        that makes no difference..

        Comment


          #5
          here's an image showing my setting for the terms and conditions
          Attached Files

          Comment


            #6
            I think i have resolved this....

            I had added the code from AUG for "Specifying a Delivery Date"

            *******************

            It could be that you would like your customers to tell you how quickly they would like their products delivered to them – whether they want the items as soon as possible, or whether they don't want them for one week, two weeks etc.

            To do this, you can change the 'Shipping User Definable' text field in the checkout to a drop-down list. This is done as follows:
            Go to 'Design | Library | Layouts' and expand the 'Checkout Prompts' group. Towards the bottom you will find 'Shipping User Definable Prompt'.
            Double click on this layout to open it for editing.
            Replace
            <input type="text" name="SHIPUSERDEFINED" size="20" maxlength="255" value="<Actinic:Variable Name="ShipUserDefined"/>" />
            with something like...
            <select name="SHIPUSERDEFINED">
            <option value="ASAP" selected>ASAP</option>
            <option value="1 week">1 week</option>
            <option value="2 weeks">2 weeks</option>
            <option value="3 weeks">3 weeks</option>
            </select>
            You will also need to go to 'Design | Text | Web Site (cont) | Shipping and Tax' and change the 'Shipping User Definable Prompt' to something appropriate.

            ********************

            When this code is in place the ability to change the prompts mentioned in Design Text seems not to work.

            But remove the AUG code and replace the original input type and the prompt text works again

            I was unable to change

            Terms and conditions Headings eg BackordersLabel
            General Info Prompts 1,2,3
            and Shipping Prompt01

            To resolve the problem, i reverted to the oringinal code
            <input type="text" name="SHIPUSERDEFINED" size="20" maxlength="255" value="<Actinic:Variable Name="ShipUserDefined"/>" />
            , then changed the prompts, then put the AUG code.

            All is well, but weird

            Comment

            Working...
            X