Announcement

Collapse
No announcement yet.

Suppress 'Re-Enter Password' Page

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

    Suppress 'Re-Enter Password' Page

    We have input the code from the Advanced Users Guide (several times!) and uploaded the site but the page to confirm password at the end of the checkout just will not go away.
    In case it makes a difference we are operating on a sellerdeck 'trial' site at the moment.
    Here is the code 'in situ':
    while ($nKeyCount == 0 && # as long as the page is not used
    $nPageNumber >= 0) # and the page is a valid number
    {
    my $sTempCookie;
    # added code to suppress re-enter password page - SL
    my $ePaymentMethod= ActinicOrder::PaymentStringToEnum($::g_PaymentInfo{'METHOD'});
    if ($ACTINIC::B2B->Get('UserDigest') && # if a user is logged in and
    ($ePaymentMethod == $::PAYMENT_ON_ACCOUNT || # the payment method is pay on account or
    $ePaymentMethod == $::PAYMENT_INVOICE) && ($nPageNumber == 3)) {
    $nPageNumber += $nInc;
    }
    # end of added code
    ($status, $sMessage, $pVarTable, $pDeleteDelimiters, $pKeepDelimiters, $pSelectTable, $sTempCookie) =
    ProcessPage($nPageNumber, $eDirection);# process the current page

    The test user is logged in and payment is 'invoice with order'.
    Your advice would be appreciated.

    #2
    If you're using a trial site then that may be operating on a standard set of Perl scripts and your locally made changes won't be uploaded.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thank you both.
      The site will be going live soon. We will initially load to the the 'test' area alongside the currently live old site. I will test it then (to check if what Norman suggests is the case) and if it still doesn't work then I shall request a fix.
      In either event I'll update this thread for future reference.
      Thanks again.

      Comment


        #4
        Just to close this one off, it was as Norman said.
        We couldn't test mailform mods on the trial site either.
        As soon as we moved it to the test area of the live site, all was fine.
        Thanks again for you assistance.

        Comment

        Working...
        X