I want to edit out some parts of a PHP file but I am not sure how to go about it without causing the cart to break. I tried a couple of times but each time the cart would stop functioning. Here is the PHP which is part of a shipping module.
define('MODULE_PAYMENT_MONEYORDER2_TEXT_TITLE', 'Postal Money Transfer - Yubin Furikae'); define('MODULE_PAYMENT_MONEYORDER2_TEXT_DESCRIPTION', 'Company Name: ' . MODULE_PAYMENT_MONEYORDER2_PAYTO . '<br /><br />Address to:<br />' . nl2br(STORE_NAME_ADDRESS) . '<br /><br />' . '<p><font color="#ff0000" size="3"><b> Payment Instructions... etc. ........
I just need to retain the TEXT_TITLE ‘Postal Money Transfer - Yubin Furikae’ .
The ‘Company Name‘ and the ‘Address to’ fields are not needed as I will include all the relevant info further down in the explanation. If someone could help me out here it would be greatly appreciated.
Thanks in advance!



