Guest Posted June 29, 2010 Posted June 29, 2010 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
chadcloman Posted June 29, 2010 Posted June 29, 2010 Do you mean on the "Order Information" page (in account_history_info.php)? Check out Chad's News.
♥14steve14 Posted June 29, 2010 Posted June 29, 2010 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
Guest Posted June 29, 2010 Posted June 29, 2010 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
knifeman Posted June 29, 2010 Posted June 29, 2010 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
Guest Posted June 30, 2010 Posted June 30, 2010 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
knifeman Posted June 30, 2010 Posted June 30, 2010 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.
Guest Posted June 30, 2010 Posted June 30, 2010 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.