Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Changing text on payment page


Guest

Recommended Posts

Posted

Hi

 

Under Payment Method on the Payment Information Page. I would like to add a little additional text directly under Bank Deposit, can someone tell me where I can do this.,

 

Many thanks

 

Grandpa

Posted

Do you mean on the "Order Information" page (in account_history_info.php)?

Check out Chad's News.

Posted

Have a klook in includes/languages/what ever your language/modules/payment/pick your payment method.php.

 

You should be able to add or alter your text there.

REMEMBER BACKUP, BACKUP AND BACKUP

Posted

Do you mean on the "Order Information" page (in account_history_info.php)?

Hi

 

Not sure about that. Its the page which requires info after you have ordered (credit card details, Bank deposit etc)and are proceeding to Check Out.

 

Cheers

 

Grandpa

Posted

Hi

 

Not sure about that. Its the page which requires info after you have ordered (credit card details, Bank deposit etc)and are proceeding to Check Out.

 

Cheers

 

Grandpa

I believe you are on checkout_payment.php.

In that case follow what Steve said. You should find a define similiar to this:

define('MODULE_BANK_DEPOSIT, 'Bank Deposit');

 

You could do something like this:

define('MODULE_BANK_DEPOSIT, 'Bank Deposit <br> Your text here');

That should put your new text on the next line under the title 'Bank Deposit'.

 

Tim

Posted

I believe you are on checkout_payment.php.

In that case follow what Steve said. You should find a define similiar to this:

define('MODULE_BANK_DEPOSIT, 'Bank Deposit');

 

You could do something like this:

define('MODULE_BANK_DEPOSIT, 'Bank Deposit <br> Your text here');

That should put your new text on the next line under the title 'Bank Deposit'.

 

Tim

Hi

 

Thanks Tim

 

Just 1 thing. How do get to change the font from Bold to Normal.

 

Many thanks

 

Grandpa

Posted

Hi

 

Thanks Tim

 

Just 1 thing. How do get to change the font from Bold to Normal.

 

Many thanks

 

Grandpa

All text within the initial define, will be formatted alike. You can add bold or color, or size to certain text, but I don't know how to take it away.

Assuming you want the original "Bank Depost" bold and your new text normal, then you have 2 options.

Create a new define

define('MODULE_SUB_TEXT, 'Your text here');

Then place a call to this define in the file includes/modules/payment/bank_deposit.php

 

OR

 

Just hard code the text into

includes/modules/payment/bank_deposit.php directly after the call for the 'Bank Deposit' text.

 

** bank_deposit.php is the file for your payment module. I am unsure of the exact name you have.

Posted

All text within the initial define, will be formatted alike. You can add bold or color, or size to certain text, but I don't know how to take it away.

Assuming you want the original "Bank Depost" bold and your new text normal, then you have 2 options.

Create a new define

define('MODULE_SUB_TEXT, 'Your text here');

Then place a call to this define in the file includes/modules/payment/bank_deposit.php

 

OR

 

Just hard code the text into

includes/modules/payment/bank_deposit.php directly after the call for the 'Bank Deposit' text.

 

** bank_deposit.php is the file for your payment module. I am unsure of the exact name you have.

 

Hi

 

Thanks so much for your help

 

Kind regards

 

Grandpa

Archived

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

×
×
  • Create New...