Magento – Magento 2 How to remove what is paypal? text

magento-2.1paypalpaypal-standard

I'd like to remove what is paypal text and paypal logo from checkout.

I found it in
vendor\magento\module-paypal\view\frontend\templates\payment\mark.pthml

I tried comment out the codes but nothing has changed.
I flushed all caches and browser history.

Thank you

Best Answer

It's not a good practice to change files in vendor folder for many reasons!

You have to copy that file into your theme:

app/design/frontend/Vendor/Theme/Magento_Paypal/templates/payment/mark.phtml and comment the code for showing this text.

Then execute php bin/magento setup:static-content:deploy and flush all caches to apply the changes

Related Topic