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)
-   -   How to modify credit card description fields ? (https://forum.x-cart.com/showthread.php?t=11981)

Isleman 02-05-2005 10:53 AM

How to modify credit card description fields ?
 
Where is the file to modify these credit card description fields?

Credit card type Visa MasterCard American Express Switch Solo
Cardholder's name
Credit card number (no spaces or dashes)
Valid from (MMYY) (if not present, leave blank)
Expiration date (MMYY)
CVV2
Issue No. (if not present, leave blank)

I had customers who asked me what cvv2 means and I will like to include a description. Also I would like to modify where it says ( if not present leave blank)

Thanks

cotc2001 02-05-2005 10:56 AM

There should be a little question mark next to it that when you click on it brings up the explanation, well there is on my version 4.0.5 , unfortunatley you have put the version you are using into your signature so we have no way of knowing what version to help you with.

markwhoo 02-05-2005 10:57 AM

Re: How to modify credit card description fields ?
 
Quote:

Originally Posted by Isleman
Where is the file to modify these credit card description fields?

Credit card type Visa MasterCard American Express Switch Solo
Cardholder's name
Credit card number (no spaces or dashes)
Valid from (MMYY) (if not present, leave blank)
Expiration date (MMYY)
CVV2
Issue No. (if not present, leave blank)

I had customers who asked me what cvv2 means and I will like to include a description. Also I would like to modify where it says ( if not present leave blank)

Thanks


First of all, if we had an indication of your version, it would help.

In the different versions this issue is handled differently.

Older 3.4.x versions you had to do a mod that would list details in an external html page and you could add a link to this page with description from the word CVV2.

In the new 4.0.x versions, it has already been done by xcart in a pop up window. If CVV2 is clicked, it will pop up a window that shows end user what this is with pics.

Isleman 02-05-2005 11:30 AM

Thank you for your fast response .
My X-Cart version is 3.5.10

cotc2001 02-05-2005 11:40 AM

Isleman just pop that version info into your signature by going to profile and entering it into the signature box (dont forget you need to enter your helpdesk password back into your profile as well so that it saves).

takes 5 secs and it will save a lot of hassle in the long run.

markwhoo 02-05-2005 11:53 AM

Quote:

Originally Posted by Isleman
Thank you for your fast response .
My X-Cart version is 3.5.10


Well, that cooks my chli,

I hopped over to 4.0.x from the 3.4.x version branch so I do not know exaclty what to tell you here except it should be one or the other.

If you see a blue CCV2 code word where it asks for the code to be enetered, I would say you need to do the mod to add info to external pop up as I did. I can help you with that, but need to know first.

Otherwise, it should be already linked by xcart right out of the can and either have the hyperlink on the word CVV2 or a questionmark as cotc2001 has mentioned.

Either way, have a look in the checkout yourself, if you do not see the hyperlink let me know and we will do one with a pop up or a page pop up with info. :wink:

Isleman 02-05-2005 12:59 PM

Quote:

Originally Posted by markwhoo
Quote:

Originally Posted by Isleman
Thank you for your fast response .
My X-Cart version is 3.5.10


If you see a blue CCV2 code word where it asks for the code to be enetered, I would say you need to do the mod to add info to external pop up as I did. I can help you with that, but need to know first.

Otherwise, it should be already linked by xcart right out of the can and either have the hyperlink on the word CVV2 or a questionmark as cotc2001 has mentioned.

Either way, have a look in the checkout yourself, if you do not see the hyperlink let me know and we will do one with a pop up or a page pop up with info. :wink:

I am sorry but i don't have any hyperlink. I looked in the checkout.tpl but I can't find the fields I want. Which mod I need to add ?
Where can I find it ?
Thank you very much for your help

markwhoo 02-05-2005 01:56 PM

Actually, where you want to look is in skin1/main/register_ccinfo.tpl

This is the 3.4.x version fix which can be adapted I would assume to the 3.5.x branch if you in fact do not have this already in the tpl as a hyperlink.

Look for:

Code:

{if #safeCCNum# eq ""}
<input type=text name=card_cvv2 size=4 maxlength=4 value="">
CVV2
{else}
{#safeCCcvv2#}


and change to:

Code:

{if #safeCCNum# eq ""}
<input type=text name=card_cvv2 size=4 maxlength=4 value="">
<a target="_blank" href="https://www.yourname.com/ccInfo/cvv.htm">
<font color="#000080">CVV2
Help</font></a>

{else}
{#safeCCcvv2#}


Now remember, there is a branch change here so the sode may not be exactly as it appears here.

The just of things is to make your WORD "CVV2" the hyperlink. I made my appear as "CVV2 Help" (on older versions) (new branch has this done already)

Now, after you have made your code change, you need to change the url to match your domain name.

Also create a file called "ccInfo" in the web site root or if changed, change URL to match location, this is up to you.

Then create your help page as you see fit. I used a combination of text and picture format for easy help.

All you need to do is take Credit Cards you use and find pics of the backs of them where the cvv2 code is and then show the location of the needed number and a brief description of WHY you require this to prevent fraud.

Most processors have these pics to use, but if not, let me know and what cards you need and I may also be able to help with that.


Hope this helps and is clear as mud. :wink:

Isleman 02-05-2005 02:18 PM

Quote:

Originally Posted by markwhoo
Actually, where you want to look is in skin1/main/register_ccinfo.tpl



You're great.Thanks a lot .
I will dive my hands in right now... :D


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

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