Miva Merchant Development, eCommerce Consulting, Web Design and Web Hosting e-Business Express

e-Business Express Support Services

e-business express

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>&lt;Select One&gt;</option>
<option value=”US”>United States</option> <mvt:else>
<option value=”">&lt;Select One&gt;</option>
<option value=”US” selected>United States</option> </mvt:if> </select>

Tags: , , , , ,