Country Bug in MIVA 5.5 – How to fix
There is a bug in MIVA 5.5 caused by only having one country available at checkout.
Here is the fix for that issue:
On ACAD, ACED and OCST pages, Customer Fields tab find:
Code:
<mvt:item name=”countries” param=”Customer_BillCountry” />
Replace with:
Code:
<select name=”Customer_BillCountry”>
<mvt:if expr=”g.Customer_BillCountry NE ‘US‘”>
<option value=”" selected><Select One></option>
<option value=”US”>United States</option> <mvt:else>
<option value=”"><Select One></option>
<option value=”US” selected>United States</option> </mvt:if> </select>
Tags: ACED, Customer Fields, MIVA, OCST, Select One, United States

