Payment Information

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago


Hi, how can I add a description below or above the card data box?
5 years ago
The looks like the manual payment method ? (or another credit card payment method that has a similar page)
See nopCommerce_4.10_Source\Plugins\Nop.Plugin.Payments.Manual\Views\PaymentInfo.cshtml

What is the purpose of the description ?
It is static text for the page or you want to allow customer to change and store it with their credit card details ?
5 years ago
Yidna wrote:
The looks like the manual payment method ? (or another credit card payment method that has a similar page)
See nopCommerce_4.10_Source\Plugins\Nop.Plugin.Payments.Manual\Views\PaymentInfo.cshtml

What is the purpose of the description ?
It is static text for the page or you want to allow customer to change and store it with their credit card details ?


Thanks for your response and sorry for my English.

The payment method is manual. I would like to insert some text (add "the inserted data will be deleted immediately after the order"). I had thought about modifying infopayment but how do I translate?
5 years ago
Maybe have a look around and see if you can find a standard statment on other websites otherwise you could write something like:

Customers please note: your credit card details and information are only used for the purposes of making payment for this order via our credit card payment gateway. All information is encrypted whilst in use and the information deleted immediatly after payment is completed.
5 years ago
You don't need the source code version if you only need to modify the view file with text.  Modify this file in your site:

\Plugins\Payments.Manual\Views\PaymentInfo.cshtml
5 years ago
You could add and editable text string "Plugins.Payments.Manual.Information" in the file then you can edit from the language settings if required

@model Nop.Plugin.Payments.Manual.Models.PaymentInfoModel
<p>@T("Plugins.Payments.Manual.Information")</p>
<table width="100%" cellspacing="2" cellpadding="1" border="0">
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.