Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

File To Modify


JR Bregante

Recommended Posts

Posted

hello,

 

I need to modify the shipping address where money orders are sent. The address chance is for checkout_confirmation. But I can not seem to see the file to change that info.

 

Thanks JR

Posted
hello,

 

I need to modify the shipping address where money orders are sent. The address chance is for checkout_confirmation. But I can not seem to see the file to change that info.

 

Thanks JR

 

Admin-Mystore-Store Address ... but it will modify all references.

 

If you only need it for the money order, insert a new key in phpmyadmin to the configuration table and reference that in your money order class.

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Posted
hello,

 

I need to modify the shipping address where money orders are sent. The address chance is for checkout_confirmation. But I can not seem to see the file to change that info.

 

Thanks JR

 

 

If you have one address for the store and one you want for the money orders you can alter the langauage file.

 

This is the generic

 

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.');

 

You can just change it to something like this...

 

define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Make Payable To: Your Name<br><br>Send To: Store Address<br>City, State ZIP Country<br><br>Your order will not ship until we receive payment.');

 

define('MODULE_PAYMENT_MONEYORDER_TEXT_EMAIL_FOOTER', "Make Payable To: Your Name\nSend To: Store Address<br>City, State ZIP Country\n" . 'Your order will not ship until we receive payment.');

 

 

I am SURE the

define('MODULE_PAYMENT_MONEYORDER_TEXT_DESCRIPTION', 'Make Payable To: Your Name<br><br>Send To: Store Address<br>City, State ZIP Country<br><br>Your order will not ship until we receive payment.');

works but I am not 100% sure for the email portion. I could have made a mistake in that code. I never edit the email portions but someone else may know for sure.

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Posted

Forgot to mention that the file is in

catalog/includes/langauges/yourlanguage/modules/payment/

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Archived

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

×
×
  • Create New...