Announcement

Collapse
No announcement yet.

Is it possible for the 'county / state' field to retain the information typed into...

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

    Is it possible for the 'county / state' field to retain the information typed into...

    Is it possible for the 'county / state' field to retain the information typed into it if the page is refreshed?

    The following workaround should retain the County/state field if the page is refreshed, however, we cannot guarantee that there will not be side effects elsewhere so use it at your own risk.

    * edit ActinicPXML.pm in your site folder using a text editor such as notepad

    * search for...

    $sReplace = ACTINIC::GetCountryName($::g_LocationInfo{INVOICE_REGION_CODE});

    * immediately after the above insert...

    if (!$sReplace)
    {
    $sReplace = $::g_BillContact{'ADDRESS4'};
    }

    * then search for...

    $sReplace = ACTINIC::GetCountryName($::g_LocationInfo{DELIVERY_REGION_CODE});

    * immediately after the above insert...

    if (!$sReplace)
    {
    $sReplace = $::g_ShipContact{'ADDRESS4'};
    }

    * save and close the file

    * upload your site.


    SellerDeck 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.
Working...
X