I need to change the text that appears on the checkout_payment.php next to the CVV box. It now reads (MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK). Where do I change this text?
Thanks
This is a discussion on Change text (MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK) within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; I need to change the text that appears on the checkout_payment.php next to the CVV box. It now reads (MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK). ...
I need to change the text that appears on the checkout_payment.php next to the CVV box. It now reads (MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK). Where do I change this text?
Thanks
No thanks to this forum I figured it out myself!
If anyone else is looking to do this here is what you do,
in file linkpointms1.php from catalog/includes/modules/payment/ do the following.
Make sure you have a backup of this file incase you do something wrong so you can replace it!
Around Line 93 you will see the following,
'field' => tep_draw_input_field('cc_checkcode', '', 'size="4" maxlength="4"') . '&nbsp;&nbsp;</small><a href="javascript:CVVPopUpWindow(\'' . tep_href_link('cvv.html') . '\')">' . '<u><i>' . '(' . MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK . ')' . '</i></u></a>')));
in the area that says,
'(' . MODULE_PAYMENT_AUTHORIZENET_TEXT_CVV_LINK . ')'
change the text to what you want, make sure to leave the spaces before and after the .
I also left the undrscores.
For example I made mine like this,
'(' . WHAT_IS_THIS . ')'
works for me!
Bookmarks