Announcement

Collapse
No announcement yet.

E-Mail confirmation in Checkout....

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

    E-Mail confirmation in Checkout....

    Tried searching for this as i'm sure someone has done this, no luck though?

    However, I want to request the e-mail address of my customer's twice, and confirm that they are both correct, and disable COPY and PASTE between form fields if poss.

    Simply on Digital Download thats all I have got .... if the customer types this in wrong... it all goes Pete Tong.

    Simon.
    esafetysigns.co.uk
    your instant download portal for self printable health and safety signs and posters
    ... download once use as many times as you like !


    http://www.esafetysigns.co.uk/index.html
    http://www.esafetysigns.co.uk/acatalog/index.html

    #2
    Have you tried the method on P52 of the Advanced User Guide (it was on p52 of my copy of the AUG)
    I have used it on my website and was straight forward to implement.
    Not sure of any way of preventing the copy/paste function though.
    Darren Guppy
    Golf Tee Warehouse
    Golf Tees and Golf Accessories.

    Comment


      #3
      In the Advanced User Guide for v7, there is "Asking People to Verify Their Email Address" in the functionality tips chapter (3).

      I'm not sure about stopping copy and paste though.

      Comment


        #4
        Spot on. Thanks for that.

        Any scripters out there, who can suggest how to disable COPY and PASTE in Act_Order01.htm

        Thanks, Simon.
        esafetysigns.co.uk
        your instant download portal for self printable health and safety signs and posters
        ... download once use as many times as you like !


        http://www.esafetysigns.co.uk/index.html
        http://www.esafetysigns.co.uk/acatalog/index.html

        Comment


          #5
          Simon,

          A search on google gave me this... http://www.hypergurl.com/norightclick.html

          Kind regards,
          Bruce King
          SellerDeck

          Comment


            #6
            It looks like you can effectively block copy/paste using Javascript. Here's some code I found doing a quick search in Google:

            <head>
            <script type="text/javascript">
            function start(){
            block = setInterval("window.clipboardData.setData('text','')",20);
            }
            function stop(){
            clearInterval(block);
            }
            </script>
            </head>

            <body onload="start();">
            YOU TRY TO COPY AND PASTE THIS SCREEN, AND ALL THE ACTIVE SCREENS
            <input type="button" onclick="stop();" value="stop blocking copy/paste!">

            </body>
            </html>
            It looks as if this is anti-social though as you need to disable it again or the user might not be able to do any copy/pasting until they restart their windows user session. I guess you could disable it on the email address entry page and re-enable it on the next page. Use with caution though.

            Mike
            -----------------------------------------

            First Tackle - Fly Fishing and Game Angling

            -----------------------------------------

            Comment

            Working...
            X