Announcement

Collapse
No announcement yet.

Confused about layouts

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

    Confused about layouts

    I want to modify the layout of my checkout page. I have found the page I am using in template manager but it does not make sense - what is showing on the page when it is uploaded does not correspond to what i am seeing in dreamweaver or notepad.. I know I am using the right page because I entered some text and uploaded it.

    When I look at the primarycheckout.html in dreamweaver I cannot see where it could be pulling the details that show on this page when I view it online.. It should say somewhere what other pages or templates this page uses shouldnt it? It just says NETQUOTEVAR:BULK or NETQUOTEVAR:HEADER
    Where do I see what is in netquotevar:bulk?

    I do not have shipping enabled on my business settings yet when I go to checkout there is a shipping text box there? Surely this should be disabled if I do not enable shipping withing actinic?

    #2
    Have you taken a peek at Act_ShoppingCart[XML].html ..... recall they throw some weight to the mix


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      looks like that might be it..

      Thx

      Comment


        #4
        Welcome to the world of nested templates... it's a fun place to be


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          Spoke too soon
          When I modify this template and upload my site nothing changes... it looks like it is the right page as it has the info I want to comment out but there might be something else I am missing....?

          Comment


            #6
            HI Lee

            You can remove the shipping message box by going to 'Design | Text | Web SIte (cont) | Shipping and Tax' and unticking 'Shown' next to the prompt in the list.

            Comment


              #7
              Okay I see this now and it works fine thanks .. however I still want to change the layout of this page. It also has an invoice address and vat number field etc - I have printed off the help page on this html page and I am also viewing it in dreamweaver and I still cannot see how the variables showing on the web correspond to the page?

              Comment


                #8
                Where do I see what is in netquotevar:bulk?
                I think this is likely to be either Act_Order00.html, Act_Order01.html or Act_Order02.html

                Comment


                  #9
                  I have checked all of the order pages
                  Act_order00.html - Act_order04.html and I have found the one that this page is using order02. So I modify it and upload it, but only half my changes are brought through! I cannot seem to change the invoice box, I cannot move it or align it different.. so how come I can change for example the terms and align it different or put a border around it and I cannot seem to move the invoice box?

                  Thanks

                  Comment


                    #10
                    The invoice box is in Act_Order01.html. I think you have probably been editing the delivery fields in Act_Order02.html.

                    Comment


                      #11
                      Those are the pages I have been modifing. I have noticed the invoice section is different for registered users and non registered users. Even though if I change anything else like the vat or terms I can see the change regardless of whether the user is registered or not however the invoice section for registered customers is the one I cannot seem to find...

                      Comment


                        #12
                        Hmmm - all the logged in customer stuff is all that business at the top of 'Act_Order01.html'...

                        Code:
                        <!-- XML tags for formatting of the address list in B2B mode -->
                        <Actinic:VAR NAME=ADDRESS_COLUMNS VALUE=3/>
                        
                        <Actinic:VAR NAME=ADDRESS_FORM0 VALUE="
                        <FONT FACE=ARIAL><INPUT TYPE=HIDDEN NAME=ADDRESSSELECT VALUE=%s>
                        <B>%s</B><BR>%s,<BR>%s,<BR>%s,<BR>%s, <B>%s</B>,<BR><B>%s</B></FONT>
                        "/>
                        <Actinic:VAR NAME=ADDRESS_FORM1 VALUE="
                        <FONT FACE=ARIAL><U><B>%s:</B></U>
                        <INPUT TYPE=RADIO NAME=ADDRESSSELECT VALUE=%s%s></BR>
                        <B>%s</B><BR>%s,<BR>%s,<BR>%s,<BR>%s, <B>%s</B>,<BR><B>%s</B></FONT>
                        "/>
                        <Actinic:VAR NAME=ADDRESS_FORM2 VALUE="
                        <FONT FACE=ARIAL><U><B>%s:</B></U>
                        <INPUT TYPE=RADIO NAME=ADDRESSSELECT VALUE=%s%s></BR>
                        <B>%s</B><BR>%s,<BR>%s,<BR>%s,<BR>%s, <B>%s</B>,<BR><B>%s</B></FONT>
                        "/>
                        
                        <Actinic:VAR NAME=ADDRESS_TITLE0 VALUE=""/>
                        <Actinic:VAR NAME=ADDRESS_TITLE1 VALUE="<FONT FACE=ARIAL>%s:</FONT>"/>
                        <Actinic:VAR NAME=ADDRESS_TITLE2 VALUE="<FONT FACE=ARIAL>%s:</FONT>"/>
                        
                        <Actinic:VAR NAME=ADDRESS_TITLE10 VALUE=""/>
                        <Actinic:VAR NAME=ADDRESS_TITLE11 VALUE=""/>
                        <Actinic:VAR NAME=ADDRESS_TITLE12 VALUE="
                        <FONT FACE=ARIAL><INPUT TYPE=RADIO NAME=ADDRESSSELECT VALUE=0 CHECKED>
                        %s:</FONT>
                        "/>
                        
                        <Actinic:VAR NAME=ADDRESS_TABLE VALUE="
                        <FONT FACE=ARIAL>
                        %s
                        <TABLE WIDTH=600 BORDER=0 CELLSPACING=0 CELLPADDING=1 BGCOLOR=%s><TR><TD>
                        <TABLE WIDTH=100%% BORDER=0 CELLSPACING=0 CELLPADDING=4 BGCOLOR=%s>
                        %s
                        </TABLE>
                        </TD></TR></TABLE>
                        </FONT>
                        %s
                        "/>
                        <!-- End of B2B address formatting tags -->
                        The most I've ever done with that is tweak the 'table' tags.

                        Comment

                        Working...
                        X