Announcement

Collapse
No announcement yet.

Ordering and Reciept Issues

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

    Ordering and Reciept Issues

    Hi,

    I have two more issues with Business v6.0.2 (latest patch)

    1) When you choose products to purchase and click Confirm instead of Checkout Now on the "summary" page, you are returned to the login page but it displays the number of items etc... After re-loggin in the information is lost.

    2) Is there a way of displaying my user definables on the receipt?

    Cheers all

    DannyC

    #2
    1) When you choose products to purchase and click Confirm instead of Checkout Now on the "summary" page, you are returned to the login page but it displays the number of items etc... After re-loggin in the information is lost.

    I belive Tracey has been in touch with you about this. THis is a bug that will be addressed in the next maintentace release. The workaround is:


    - open Session.pm in the site directory
    - locate the line

    if ($sReferrer =~
    /$::g_sAccountScriptName.*PRODUCTPAGE\=(?!framenavbar\.html)/i )

    in sub InitURLs.

    - add the following lines just above this

    if ($sReferrer =~ /$::g_sAccountScriptName$/i )
    {
    my ($sBodyPage, $sProductPage) = ACTINIC::CAccCatalogBody();
    $sReferrer .= "?PRODUCTPAGE\=" . ACTINIC::EncodeText2($sProductPage,
    $::FALSE)
    }

    - save the file and upload Actinic.

    Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.

    2) Is there a way of displaying my user definables on the receipt?

    Which ones?

    Comment

    Working...
    X