Hm i have found this in the template
Code:
<?php
} else {
for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
// set the radio button to be checked if it is the method chosen
$checked = (($quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'] == $_SESSION['shipping']['id']) ? true : false);
if ( ($checked == true) || ($n == 1 && $n2 == 1) ) {
//echo ' <div id="defaultSelected" class="moduleRowSelected">' . "\n";
//} else {
//echo ' <div class="moduleRow">' . "\n";
}
?>
But dunno if it's the right code to change another shipping method to default.
Cause the Radiobutton goes automaticly to Flat Rate instead of Free shipping while Flate Rate is positioned second and Free Shipping on 1.
Anyone know the answer? =D