Announcement

Collapse
No announcement yet.

Removing 'Re-enter password' step at checkout in v8

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

    Removing 'Re-enter password' step at checkout in v8

    The work around for removing 'Re-enter password' step at checkout in v8 is as follows...


    - Open OrderScript.pl
    - find sub DisplayPage
    - find the following lines:
    while ($nKeyCount == 0 &&
    $nPageNumber >= 0)
    {
    my $sTempCookie;
    - insert these lines after the above part

    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;
    }
    - just to be sure it is on the right place, the lines after the inserted lines must look like the following:

    ($status, $sMessage, $pVarTable, $pDeleteDelimiters, $pKeepDelimiters, $pSelectTable, $sTempCookie) =
    ProcessPage($nPageNumber);
    # process the current page
    - close the file and upload your site.
    - The signature page will be skipped.

    The usual safeguards need to be applied, make a backup of the script before editing it and if possible test on a test-space before publishing live.

    Kind regards,
    Bruce King
    SellerDeck

    #2
    Still working after all these years in 18.0.1
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    Comment

    Working...
    X