How to rename the payment method in my site?

Support Forums Modules and Extensions How to rename the payment method in my site?

Tagged: 

This topic contains 1 reply, has 2 voices, and was last updated by  Jeanne 6 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1025

    jessi
    Participant

    Hi,

    I am using prestashop paypal pro plus 1.6
    http://www.modulebazaar.com/en/paypal-payments-advanced-module-for-opencart.html

    We would like to change the text from “paypal pro plus” under “Payment Method ” to ” Credit Card .
    How to rename this?

    #1047

    Jeanne
    Keymaster

    Dear Jessi,

    Please follow the below steps,

    1.Kindly navigate below file path
    /pdf/invoice.payment-tab.tpl

    2.Remove 30 to 35 lines (code lines)
    Removed codes:
    {foreach from=$order_invoice->getOrderPaymentCollection() item=payment}

    {$payment->payment_method} {displayPrice currency=$payment->id_currency price=$payment->amount}

    {/foreach}

    3.Add the below code after removing (30-35 code lines)

    Adding Code:
    {foreach from=$order_invoice->getOrderPaymentCollection() item=payment}

    {if $payment->payment_method == “Paypal Pro Plus”}

    Credit Card Payment {displayPrice currency=$payment->id_currency price=$payment->amount}

    {else}

    {$payment->payment_method} {displayPrice currency=$payment->id_currency price=$payment->amount}

    {/if}
    {/foreach}

    If you still face issue please send a mail to support@modulebazaar.com

    Thanks,
    ModuleBazaar Team

Viewing 2 posts - 1 through 2 (of 2 total)

You must Login/Register to reply to this topic.