Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help with removing payment information in Order Confirmation page when elect pay by Check/Money Order


midpen

Recommended Posts

I want to remove payment information (such as

 

Make Payable To:

 

Send To:

Store Name

Address

Country

Phone) in Order Confirmation page when select pay by Check/Money Order.

 

I would like to just add a description say "please contact us for payment information"

 

How to do that? Thanks for the help!

Link to comment
Share on other sites

I want to remove payment information (such as

 

Make Payable To:

 

Send To:

Store Name

Address

Country

Phone) in Order Confirmation page when select pay by Check/Money Order.

 

I would like to just add a description say "please contact us for payment information"

 

How to do that? Thanks for the help!

 

Find in includes\languages\english\modules\payment\moneyorder.php

 

  define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Make Payable To: ' . MODULE_PAYMENT_MONEYORDER_PAYTO . '<br><br>Send To:<br>' . nl2br(STORE_NAME_ADDRESS) . '<br><br>' . 'Your order will not ship until we receive payment.');
 define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', "Make Payable To: ". MODULE_PAYMENT_MONEYORDER_PAYTO . "\n\nSend To:\n" . STORE_NAME_ADDRESS . "\n\n" . 'Your order will not ship until we receive payment.');

 

REPLACE WITH:

 

  define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Please contact us for payment information.');
 define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', 'Please contact us for payment information.');

 

As always, backup files before making any changes. Enjoy.

Link to comment
Share on other sites

Find in includes\languages\english\modules\payment\moneyorder.php

 

  define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Make Payable To: ' . MODULE_PAYMENT_MONEYORDER_PAYTO . '<br><br>Send To:<br>' . nl2br(STORE_NAME_ADDRESS) . '<br><br>' . 'Your order will not ship until we receive payment.');
 define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', "Make Payable To: ". MODULE_PAYMENT_MONEYORDER_PAYTO . "\n\nSend To:\n" . STORE_NAME_ADDRESS . "\n\n" . 'Your order will not ship until we receive payment.');

 

REPLACE WITH:

 

  define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Please contact us for payment information.');
 define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', 'Please contact us for payment information.');

 

As always, backup files before making any changes. Enjoy.

 

Thank you very much, it worked!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...