Not sure off hand what is blocking Free Shipping Options freeoptions from working ...
Try adding the echo in RED to the:
/includes/modules/shipping/freeoptions.php
Code:
// final check for display of Free Options
if ($this->ck_freeoptions_total or $this->ck_freeoptions_weight or $this->ck_freeoptions_items) {
$this->enabled = true;
} else {
$this->enabled = false;
}
echo 'I see show_total: ' . $_SESSION['cart']->show_total() . ' ck_freeoptions_total: ' . ($this->ck_freeoptions_total ? 'YES' : 'NO') . ' enabled: ' . ($this->enabled ? 'ON' : 'OFF');