Announcement

Collapse
No announcement yet.

Other payment option - payment details message

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

    Other payment option - payment details message

    Hi,
    I want to provide details of how payment can be made by cheque by post and bank transfer if a person selects during checkout. How can I make this information only viewable to people who select these methods? I will group them on one page not a separate page for cheque, bank transfer etc.

    Thanks
    Sellerdeck Business Plus 12.0.1.NBLA

    #2
    Hi there

    Hmmm not sure how you could achieve this, to have the information displayed once the customer has selected that payment method. Could you not just edit the "Act_Order02.html", and provide a custom popup page which would link to your own information on Payment?

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Hi,
      I have looked into making a separate popup page and adding a link under the payments option listbox. From what I have found I will need to use javascript to make a popup with no address bar and headings and scroll bars, simply with the information for payment. Can I just add <SCRIPT TYPE="text/javascript"> and the script into the page?
      Thanks
      Sellerdeck Business Plus 12.0.1.NBLA

      Comment


        #4
        Hi,

        I found the following at Dynamic Drive. The part that you need to put between the <HEAD> and </HEAD> tags, you put in the primary template that you use for checkout (Design | Options | Layouts). Then the link itself put into 'Act_Order02.html' after NETQUOTEVAR:PAYMENTMETHODOPTIONS.

        I hope this helps.
        ********************
        Tracey
        SellerDeck

        Comment


          #5
          Hi,
          Thanks for that. It seems that the javascript is not working as when I use that code on a plain test page and link it to the payment page the page does not open in a new windows or do any of the java commands from the previous page.
          Sellerdeck Business Plus 12.0.1.NBLA

          Comment


            #6
            Hi,

            I tried it out before telling you about it and it worked for me.

            as when I use that code on a plain test page and link it to the payment page
            What do you mean by this?
            ********************
            Tracey
            SellerDeck

            Comment


              #7
              Hi,
              I thought I would try it on a plain html page before adding it to the store, anyway I added it to the store and had the same problem. This is the code I put above the head from the design>layouts checkout

              <script language="javascript" type="text/javascript">
              <!--
              /****************************************************
              Author: Eric King
              Url: http://redrival.com/eak/index.shtml
              This script is free to use as long as this info is left in
              Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
              ****************************************************/
              var win=null;
              function NewWindow(mypage,myname,w,h,scroll,pos){
              if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
              if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
              else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
              settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
              win=window.open(mypage,myname,settings);}
              // -->
              </script>

              The link opens the page fine but in the same window and not as the settings and I see the IE6 icon change in the bottom left corner to identify errors on page.
              Sellerdeck Business Plus 12.0.1.NBLA

              Comment


                #8
                Hi,

                I've just copied the code here into my software and it works fine. What is the link code that you put into your Act_Order02.html template?
                ********************
                Tracey
                SellerDeck

                Comment

                Working...
                X