Applied Posted July 26, 2004 Posted July 26, 2004 /catalog/includes/languages/english/modules/payment/paypal.php In the section where it specifies what name is placed in the payment options page, the code says not to change it. here: define('MODULE_PAYMENT_PAYPAL_TEXT_TITLE', 'PayPal'); //Do not change! Anyone know why this is? I'd much rather it say something like 'Credit Card or PayPal'. It saying PayPal is really confusing for ppl who have no idea what it is. I'd also like to be able to add another box on the confirm order page. Can anyone tell me how to do this? I'm looking to add another box show screenshots on how to pay using PayPal's checkout process. Another thing I don't like too much is when you use PayPal, it first takes you to a page where you can log to your PayPal account, and other users then have to click a "click here" button. Can I just make that page the page that loads and the customer puts in their credit card number? Any help would be greatly appreciated. Thanks my site is www.fanready.com
devosc Posted July 29, 2004 Posted July 29, 2004 It's because that payment.title is store in the orders table as the payment_method. So once once the order is placed there is then no generic way to determine the payment_method if everybody changes the payment.title, well there is but it is an ugly solution and requires loading that payments language file. I've already mentioned this matter to an osC team member. A work around would be to change it as you'd like to and then in admin/orders.php include DIR_FS_CATALOG_LANGUAGES . $language '/modules/payment/paypal.php' and in admin/orders.php change strtolower($order->info['payment_method']) == 'paypal'To$order->info['payment_method'] == MODULE_PAYMENT_PAYPAL_TEXT_TITLE This post would of been better to have occurred in the more appropiate contribution support thread. "Any fool can know. The point is to understand." -- Albert Einstein
Recommended Posts
Archived
This topic is now archived and is closed to further replies.