Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Text_3ds_card_may_be_enrolled

Text_3ds_card_may_be_enrolled

Locked

Views: 1,020

Results 1 to 11 of 11
This thread is locked. New replies are disabled.
16 Aug 2010, 8:23 AM
#1
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Text_3ds_card_may_be_enrolled

The message "TEXT_3DS_CARD_MAY_BE_ENROLLED" is appearing below the Visa Verified/Master Card Source images on Step 3 of 3 - Order Confirmation page.

Any help would be greatly appreciated!

Thanks

16 Aug 2010, 8:29 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Text_3ds_card_may_be_enrolled

That is a constant
Have you attempted to alter the default text that displays in a file?

16 Aug 2010, 8:39 AM
#3
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

Thanks for the quick response!

I'm unable to locate that particular line of code, I thought It would be in tpl_checkout_confirmation but it appears its related to the 3d secure...

Any suggestions?

Thanks again

16 Aug 2010, 8:51 AM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Text_3ds_card_may_be_enrolled

I re-ask
Have you attempted to alter the default text that displays in a file?

16 Aug 2010, 9:08 AM
#5
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

Nothing related to the checkout, general template modification and it displays the same message with a different template.

16 Aug 2010, 9:44 AM
#6
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

Constant lookup did the trick.

/includes/modules/payment/paypaldp.php

Line #333 : '<tr><td class="smallText" valign="top">' . TEXT_3DS_CARD_MAY_BE_ENROLLED . '</td></tr></table>',

Line #532 : '<tr><td class="smallText">' . TEXT_3DS_CARD_MAY_BE_ENROLLED . '</td></table>');

Thanks

16 Aug 2010, 5:14 PM
#7
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Text_3ds_card_may_be_enrolled

So, since the constant is being displayed, that means you're missing the constant's definition in the corresponding language file. And, your constant-lookup has confirmed that you're missing important content from your language file.
You need to replace your server copy of /includes/languages/english/modules/payment/paypaldp.php with the latest version, since yours is out of date.

16 Aug 2010, 7:52 PM
#8
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

Thanks for the suggestion, I have update all the payment modules and still have the same message.

Update /includes/languages/english/modules/payment
and /includes/modules/payment

16 Aug 2010, 8:18 PM
#9
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: Text_3ds_card_may_be_enrolled

Oops ... I forgot that the 3D-Secure stuff was in a separate special language file: /includes/languages/english/extra_definitions/cardinal3dsecure.php
You'll need to upload that file.

16 Aug 2010, 8:20 PM
#10
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

Thanks much, I will give that a try and update post!

16 Aug 2010, 8:29 PM
#11
dtek avatar

dtek

New Zenner

Join Date:
Aug 2010
Posts:
10
Plugin Contributions:
0

Re: Text_3ds_card_may_be_enrolled

That did the Trick! its now displaying the text from cardinal3dsecure.php

Thank again,

Much Appreciated!