Page 1 of 1

Editing the Checkout page

Posted: Fri Nov 18, 2011 4:33 am
by defiantclass
Hello,

I'm using OpenCart 1.5.0. The only payment method we are currently taking is PayPal, but we accept credit cards via PayPal. In the checkout process when a customer gets to the Payment section, the only option for them to select is PayPal, obviously. But I would like to edit that one option to say "PayPal or Credit Card" so they know that they will have the opportunity to use the credit card when selecting PayPal as the checkout method.

Can I edit the actual payment page to accomplish this or is there a better/easier way of doing this? Can someone please tell me how to get to the backend Payment page and what to edit?

Thank you

Re: Editing the Checkout page

Posted: Fri Nov 18, 2011 4:39 am
by bingo
defiantclass wrote:Hello,

I'm using OpenCart 1.5.0. The only payment method we are currently taking is PayPal, but we accept credit cards via PayPal. In the checkout process when a customer gets to the Payment section, the only option for them to select is PayPal, obviously. But I would like to edit that one option to say "PayPal or Credit Card" so they know that they will have the opportunity to use the credit card when selecting PayPal as the checkout method.

Can I edit the actual payment page to accomplish this or is there a better/easier way of doing this? Can someone please tell me how to get to the backend Payment page and what to edit?

Thank you
Modify:upload\catalog\language\english\payment\pp_standard.php
Find $_['text_title'] = 'PayPal';
Replace with
$_['text_title'] = 'PayPal or Credit Card';

Re: Editing the Checkout page

Posted: Fri Nov 18, 2011 5:24 am
by defiantclass
Outstanding! That did it, thanks a lot!!