by lozspaintedglass » Fri Dec 14, 2007 11:27 pm
Ok finally figured it out. For other novices like me you just add a // in front of the shipping options you dont want displayed:
//this displays the shipping matrix and sets the value for each zone ||
if (( DisplayShippingRow ) && ( iNumberOrdered != 0)) {
strOutput += "<tr><td class=\"nopship\" colspan=1 align=center><b>"+"Australia Post<br>Shipping<br>Options"+"</b></td>";
strOutput += "<td class=\"nopship\" colspan=5>";
//strOutput += "<input type=radio name=\"ZONE\" value=\"0" + "\" onClick=\"ComputeShipping(this.value, "+fWeight+")\">";
//strOutput += "No Shipping Option";
//strOutput += "<br><input type=radio name=\"ZONE\" value=\"1" + "\" onClick=\"ComputeShipping(this.value, "+fWeight+")\">";
//strOutput += "First Class - Domestic (<i>max. 13 oz</i>)";
if(fWeight>36000){
strOutput += "<br><input type=radio name=\"ZONE\" value=\"1" + "\" DISABLED>";
strOutput += "Express Post within Australia (<i>max3.6kg, please request postage quote by selecting option below</i>)";
}else{
Seems so obvious now, but I thought I'd previously tried it & it didn't work. Oh well - back to painting glasses!