X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Adding Credit Card Logo to payment page (https://forum.x-cart.com/showthread.php?t=47802)

nortonz 05-28-2009 03:56 PM

Adding Credit Card Logo to payment page
 
In 4.1.12 you could add a Credit Card Image to the payment page from with in the payment Method Page, but I had to add some code to a php file in order to get it to work. I don't remember the file name, and I can't find it in the Forum.

Can this be done in 4.2.1? and how?

Michael

carpeperdiem 05-28-2009 04:41 PM

Re: Adding Credit Card Logo to payment page
 
To add HTML tags to the "payment_details" field, in file:

/admin/payment_methods.php

FIND:
Code:

require "./auth.php";

REPLACE WITH:
Code:

define('USE_TRUSTED_POST_VARIABLES',1);
$trusted_post_variables = array("posted_data");
require "./auth.php";


Then in the "special instructions" in the payment methods (in the admin) add your html, such as:

<img src="/skin1/images/creditcards.gif" border="0" /><br />
VISA, AMEX, Discover, Mastercard

nortonz 05-28-2009 06:19 PM

Re: Adding Credit Card Logo to payment page
 
Thanks That's the one I was looking for, but do you have to do the same thing in X-Cart 4.2.1?

Edit!!

Yes it does work in 4.2.1

Michael


All times are GMT -8. The time now is 02:16 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.