Hi Philip,
Just noticed a small duplication in the code of the modules:
PHP Code:
$shipping_method = MODULE_SHIPPING_RM2NDLARGELETTER_TEXT_WAY . ' ' . $dest_country . ' : ' . $sw_text . ' ' . MODULE_SHIPPING_RM2NDLARGELETTER_TEXT_UNITS;
$shipping_method = MODULE_SHIPPING_RM2NDLARGELETTER_TEXT_WAY . ' : ' . $sw_text . ' ' . MODULE_SHIPPING_RM2NDLARGELETTER_TEXT_UNITS;
$shipping_method is being defined twice - first with the destination country, and secondly with the ... _text-way from the language file. Works even better if the second line is commented out
Bookmarks