OK. Load the austpost.php file into a text editor (make sure you have a backup first).
Do a word search for "_method" (there are quite a few of them).
Ignore anything that matches "allowed_method"
The lines you are interested in will look similar to:
----------------------
$shipping_austpost_rpp_method = zen_image($this->icon_rpp, $this->types['RPP'] ) . $bignumber . $days . "</span> " . zen_image($this->icon_del, MODULE_SHIPPING_AUSTPOST_TEXT_SHIPPINGDAYS) . $austpost_rpp_addons;
$shipping_austpost_rppi_method = zen_image($this->icon_ins, $this->types['RPPi']) . $bignumber . ($days + 1) . "</span> " . zen_image($this->icon_del, MODULE_SHIPPING_AUSTPOST_TEXT_SHIPPINGDAYS) . $austpost_rppi_addons;
$shipping_austpost_reg_method = zen_image($this->icon_reg, $this->types['REG'] ) . $bignumber . ($days + 1) . "</span> " . zen_image($this->icon_del, MODULE_SHIPPING_AUSTPOST_TEXT_SHIPPINGDAYS) . $austpost_reg_addons;
$shipping_austpost_cod_method = zen_image($this->icon_cod, $this->types['COD'] ) . $bignumber . ($days + 2) . "</span> " . zen_image($this->icon_del, MODULE_SHIPPING_AUSTPOST_TEXT_SHIPPINGDAYS) . $austpost_cod_addons;
----------------------------
You'll need to edit each of these lines to remove the data that you don't want displayed.
Using the example lines above, they will end up looking like:
----------------------
$shipping_austpost_rpp_method = zen_image($this->icon_rpp, $this->types['RPP'] ) . $austpost_rpp_addons;
$shipping_austpost_rppi_method = zen_image($this->icon_ins, $this->types['RPPi']) . $austpost_rppi_addons;
$shipping_austpost_reg_method = zen_image($this->icon_reg, $this->types['REG'] ) . $austpost_reg_addons;
$shipping_austpost_cod_method = zen_image($this->icon_cod, $this->types['COD'] ) . $austpost_cod_addons;
--------------------------------------------------
Have fun.
Rod




