Magento 2 - Changing the PayPal logo on the Checkout pagePaypal Express checkout not showing up on cart pageCan we use Paypal Express Checkout with “Ship to multiple address” optionMagento does not capture a delivery date when customer pays with PaypalHow to change PayPal LogoChange PayPal Image in CheckoutPayPal Checkout and Account Registration ConflictNo Logo at PayPal Pro Direct Payment option at checkoutUse paypal express checkout as a paymethod creating orders in the backendChange Magento 2 Paypal Logo on Checkout Step 2

Did anyone try to find the little box that held Professor Moriarty and his wife after the crash?

How do you interpolate outside the range of data?

Handling Disruptive Student on the Autistic Spectrum

Did a flight controller ever answer Flight with a no-go?

New Math Formula?

Round towards zero

Is MOSFET active device?

How do you harvest carrots in creative mode?

Architectural feasibility of a tiered circular stone keep

How do I make my image comply with the requirements of this photography competition?

Compelling story with the world as a villain

Why is 1. d4 Nf6 2. c4 e6 3. Bg5 almost never played?

If two Lore Bards used the Cutting Words feature on an ability check or attack, would they stack?

How do I, an introvert, communicate to my friend and only colleague, an extrovert, that I want to spend my scheduled breaks without them?

Non-visual Computers - thoughts?

Add newline to prompt if it's too long

Prove your innocence

How to know which loss function is suitable for image classification?

How to prevent clipped screen edges on my TV, HDMI-connected?

Improving Performance of an XY Monte Carlo

Could George I (of Great Britain) speak English?

Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?

Why in most German places is the church the tallest building?

Is there any way to keep a player from killing an NPC?



Magento 2 - Changing the PayPal logo on the Checkout page


Paypal Express checkout not showing up on cart pageCan we use Paypal Express Checkout with “Ship to multiple address” optionMagento does not capture a delivery date when customer pays with PaypalHow to change PayPal LogoChange PayPal Image in CheckoutPayPal Checkout and Account Registration ConflictNo Logo at PayPal Pro Direct Payment option at checkoutUse paypal express checkout as a paymethod creating orders in the backendChange Magento 2 Paypal Logo on Checkout Step 2






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am trying to change the PayPal logo that appears on the checkout page, just before the customer is forwarded to PayPal to make a payment. Here is a screenshot:



enter image description here



I looked everywhere and tried to change the file below:



./vendor/magento/module-paypal/view/frontend/templates/payment/mark.phtml



Still no joy. Any help or guidance will be appreciated!










share|improve this question
































    1















    I am trying to change the PayPal logo that appears on the checkout page, just before the customer is forwarded to PayPal to make a payment. Here is a screenshot:



    enter image description here



    I looked everywhere and tried to change the file below:



    ./vendor/magento/module-paypal/view/frontend/templates/payment/mark.phtml



    Still no joy. Any help or guidance will be appreciated!










    share|improve this question




























      1












      1








      1








      I am trying to change the PayPal logo that appears on the checkout page, just before the customer is forwarded to PayPal to make a payment. Here is a screenshot:



      enter image description here



      I looked everywhere and tried to change the file below:



      ./vendor/magento/module-paypal/view/frontend/templates/payment/mark.phtml



      Still no joy. Any help or guidance will be appreciated!










      share|improve this question
















      I am trying to change the PayPal logo that appears on the checkout page, just before the customer is forwarded to PayPal to make a payment. Here is a screenshot:



      enter image description here



      I looked everywhere and tried to change the file below:



      ./vendor/magento/module-paypal/view/frontend/templates/payment/mark.phtml



      Still no joy. Any help or guidance will be appreciated!







      magento2.2 paypal






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 13 at 3:32









      Sumit

      4521 silver badge14 bronze badges




      4521 silver badge14 bronze badges










      asked Feb 21 '18 at 22:08









      HustonHuston

      115 bronze badges




      115 bronze badges























          3 Answers
          3






          active

          oldest

          votes


















          0















          Please change in below file
          ./vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html



          After change below file
          please run below
          php bin/magento setup:static-content:deploy






          share|improve this answer

























          • Not a good idea to edit core files, extend it in your theme instead.

            – themanwhoknowstheman
            Jul 5 '18 at 16:45


















          0















          Copy the below file



          /vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html


          and create a new file in the below path:



          /app/design/frontend/[vendor]/[theme]/Magento_Paypal/web/template/payment/paypal-express-in-context.html


          After your changes, please run below commands:



          php bin/magento setup:static-content:deploy
          php bin/magento c:f





          share|improve this answer
































            0















            Create the file in the path:



            app/design/frontend/[vendor_folder]/[theme_folder]/Magento_Paypal/web/template/payment


            The file



            <!--
            /**
            * Copyright © Magento, Inc. All rights reserved.
            * See COPYING.txt for license details.
            */
            -->
            <div class="payment-method" css="_active: getCode() == isChecked()" afterRender="initListeners">
            <div class="payment-method-title field choice">
            <input type="radio"
            name="payment[method]"
            class="radio testing"
            attr="id: getCode()"
            ko-value="getCode()"
            ko-checked="isChecked"
            click="selectPaymentMethod"
            visible="isRadioButtonVisible()"/>
            <label attr="for: getCode()" class="label">
            <!-- PayPal Logo-->
            <!-- Here to change log-->
            <img attr="src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')" class="payment-icon"/>
            <!-- PayPal Logo -->
            <span text="getTitle()"/>
            <a class="action action-help"
            attr="href: getPaymentAcceptanceMarkHref()"
            click="showAcceptanceWindow"
            translate="'What is PayPal?'"/>
            </label>
            </div>
            <div class="payment-method-content">
            <each args="getRegion('messages')" render=""/>
            <div class="checkout-agreements-block">
            <each args="$parent.getRegion('before-place-order')" render=""/>
            </div>
            <div class="actions-toolbar" attr="id: getButtonId()" afterRender="renderPayPalButtons"/>
            </div>
            </div>



            Finally run the following command



            php bin/magento setup:static-content:deploy -f
            php bin/magento c:f





            share|improve this answer



























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "479"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f214505%2fmagento-2-changing-the-paypal-logo-on-the-checkout-page%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0















              Please change in below file
              ./vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html



              After change below file
              please run below
              php bin/magento setup:static-content:deploy






              share|improve this answer

























              • Not a good idea to edit core files, extend it in your theme instead.

                – themanwhoknowstheman
                Jul 5 '18 at 16:45















              0















              Please change in below file
              ./vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html



              After change below file
              please run below
              php bin/magento setup:static-content:deploy






              share|improve this answer

























              • Not a good idea to edit core files, extend it in your theme instead.

                – themanwhoknowstheman
                Jul 5 '18 at 16:45













              0














              0










              0









              Please change in below file
              ./vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html



              After change below file
              please run below
              php bin/magento setup:static-content:deploy






              share|improve this answer













              Please change in below file
              ./vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html



              After change below file
              please run below
              php bin/magento setup:static-content:deploy







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 29 '18 at 10:22









              Ishvar PatelIshvar Patel

              161 silver badge8 bronze badges




              161 silver badge8 bronze badges















              • Not a good idea to edit core files, extend it in your theme instead.

                – themanwhoknowstheman
                Jul 5 '18 at 16:45

















              • Not a good idea to edit core files, extend it in your theme instead.

                – themanwhoknowstheman
                Jul 5 '18 at 16:45
















              Not a good idea to edit core files, extend it in your theme instead.

              – themanwhoknowstheman
              Jul 5 '18 at 16:45





              Not a good idea to edit core files, extend it in your theme instead.

              – themanwhoknowstheman
              Jul 5 '18 at 16:45













              0















              Copy the below file



              /vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html


              and create a new file in the below path:



              /app/design/frontend/[vendor]/[theme]/Magento_Paypal/web/template/payment/paypal-express-in-context.html


              After your changes, please run below commands:



              php bin/magento setup:static-content:deploy
              php bin/magento c:f





              share|improve this answer





























                0















                Copy the below file



                /vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html


                and create a new file in the below path:



                /app/design/frontend/[vendor]/[theme]/Magento_Paypal/web/template/payment/paypal-express-in-context.html


                After your changes, please run below commands:



                php bin/magento setup:static-content:deploy
                php bin/magento c:f





                share|improve this answer



























                  0














                  0










                  0









                  Copy the below file



                  /vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html


                  and create a new file in the below path:



                  /app/design/frontend/[vendor]/[theme]/Magento_Paypal/web/template/payment/paypal-express-in-context.html


                  After your changes, please run below commands:



                  php bin/magento setup:static-content:deploy
                  php bin/magento c:f





                  share|improve this answer













                  Copy the below file



                  /vendor/magento/module-paypal/view/frontend/web/template/payment/paypal-express-in-context.html


                  and create a new file in the below path:



                  /app/design/frontend/[vendor]/[theme]/Magento_Paypal/web/template/payment/paypal-express-in-context.html


                  After your changes, please run below commands:



                  php bin/magento setup:static-content:deploy
                  php bin/magento c:f






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 12 at 11:25









                  SumitSumit

                  4521 silver badge14 bronze badges




                  4521 silver badge14 bronze badges
























                      0















                      Create the file in the path:



                      app/design/frontend/[vendor_folder]/[theme_folder]/Magento_Paypal/web/template/payment


                      The file



                      <!--
                      /**
                      * Copyright © Magento, Inc. All rights reserved.
                      * See COPYING.txt for license details.
                      */
                      -->
                      <div class="payment-method" css="_active: getCode() == isChecked()" afterRender="initListeners">
                      <div class="payment-method-title field choice">
                      <input type="radio"
                      name="payment[method]"
                      class="radio testing"
                      attr="id: getCode()"
                      ko-value="getCode()"
                      ko-checked="isChecked"
                      click="selectPaymentMethod"
                      visible="isRadioButtonVisible()"/>
                      <label attr="for: getCode()" class="label">
                      <!-- PayPal Logo-->
                      <!-- Here to change log-->
                      <img attr="src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')" class="payment-icon"/>
                      <!-- PayPal Logo -->
                      <span text="getTitle()"/>
                      <a class="action action-help"
                      attr="href: getPaymentAcceptanceMarkHref()"
                      click="showAcceptanceWindow"
                      translate="'What is PayPal?'"/>
                      </label>
                      </div>
                      <div class="payment-method-content">
                      <each args="getRegion('messages')" render=""/>
                      <div class="checkout-agreements-block">
                      <each args="$parent.getRegion('before-place-order')" render=""/>
                      </div>
                      <div class="actions-toolbar" attr="id: getButtonId()" afterRender="renderPayPalButtons"/>
                      </div>
                      </div>



                      Finally run the following command



                      php bin/magento setup:static-content:deploy -f
                      php bin/magento c:f





                      share|improve this answer





























                        0















                        Create the file in the path:



                        app/design/frontend/[vendor_folder]/[theme_folder]/Magento_Paypal/web/template/payment


                        The file



                        <!--
                        /**
                        * Copyright © Magento, Inc. All rights reserved.
                        * See COPYING.txt for license details.
                        */
                        -->
                        <div class="payment-method" css="_active: getCode() == isChecked()" afterRender="initListeners">
                        <div class="payment-method-title field choice">
                        <input type="radio"
                        name="payment[method]"
                        class="radio testing"
                        attr="id: getCode()"
                        ko-value="getCode()"
                        ko-checked="isChecked"
                        click="selectPaymentMethod"
                        visible="isRadioButtonVisible()"/>
                        <label attr="for: getCode()" class="label">
                        <!-- PayPal Logo-->
                        <!-- Here to change log-->
                        <img attr="src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')" class="payment-icon"/>
                        <!-- PayPal Logo -->
                        <span text="getTitle()"/>
                        <a class="action action-help"
                        attr="href: getPaymentAcceptanceMarkHref()"
                        click="showAcceptanceWindow"
                        translate="'What is PayPal?'"/>
                        </label>
                        </div>
                        <div class="payment-method-content">
                        <each args="getRegion('messages')" render=""/>
                        <div class="checkout-agreements-block">
                        <each args="$parent.getRegion('before-place-order')" render=""/>
                        </div>
                        <div class="actions-toolbar" attr="id: getButtonId()" afterRender="renderPayPalButtons"/>
                        </div>
                        </div>



                        Finally run the following command



                        php bin/magento setup:static-content:deploy -f
                        php bin/magento c:f





                        share|improve this answer



























                          0














                          0










                          0









                          Create the file in the path:



                          app/design/frontend/[vendor_folder]/[theme_folder]/Magento_Paypal/web/template/payment


                          The file



                          <!--
                          /**
                          * Copyright © Magento, Inc. All rights reserved.
                          * See COPYING.txt for license details.
                          */
                          -->
                          <div class="payment-method" css="_active: getCode() == isChecked()" afterRender="initListeners">
                          <div class="payment-method-title field choice">
                          <input type="radio"
                          name="payment[method]"
                          class="radio testing"
                          attr="id: getCode()"
                          ko-value="getCode()"
                          ko-checked="isChecked"
                          click="selectPaymentMethod"
                          visible="isRadioButtonVisible()"/>
                          <label attr="for: getCode()" class="label">
                          <!-- PayPal Logo-->
                          <!-- Here to change log-->
                          <img attr="src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')" class="payment-icon"/>
                          <!-- PayPal Logo -->
                          <span text="getTitle()"/>
                          <a class="action action-help"
                          attr="href: getPaymentAcceptanceMarkHref()"
                          click="showAcceptanceWindow"
                          translate="'What is PayPal?'"/>
                          </label>
                          </div>
                          <div class="payment-method-content">
                          <each args="getRegion('messages')" render=""/>
                          <div class="checkout-agreements-block">
                          <each args="$parent.getRegion('before-place-order')" render=""/>
                          </div>
                          <div class="actions-toolbar" attr="id: getButtonId()" afterRender="renderPayPalButtons"/>
                          </div>
                          </div>



                          Finally run the following command



                          php bin/magento setup:static-content:deploy -f
                          php bin/magento c:f





                          share|improve this answer













                          Create the file in the path:



                          app/design/frontend/[vendor_folder]/[theme_folder]/Magento_Paypal/web/template/payment


                          The file



                          <!--
                          /**
                          * Copyright © Magento, Inc. All rights reserved.
                          * See COPYING.txt for license details.
                          */
                          -->
                          <div class="payment-method" css="_active: getCode() == isChecked()" afterRender="initListeners">
                          <div class="payment-method-title field choice">
                          <input type="radio"
                          name="payment[method]"
                          class="radio testing"
                          attr="id: getCode()"
                          ko-value="getCode()"
                          ko-checked="isChecked"
                          click="selectPaymentMethod"
                          visible="isRadioButtonVisible()"/>
                          <label attr="for: getCode()" class="label">
                          <!-- PayPal Logo-->
                          <!-- Here to change log-->
                          <img attr="src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')" class="payment-icon"/>
                          <!-- PayPal Logo -->
                          <span text="getTitle()"/>
                          <a class="action action-help"
                          attr="href: getPaymentAcceptanceMarkHref()"
                          click="showAcceptanceWindow"
                          translate="'What is PayPal?'"/>
                          </label>
                          </div>
                          <div class="payment-method-content">
                          <each args="getRegion('messages')" render=""/>
                          <div class="checkout-agreements-block">
                          <each args="$parent.getRegion('before-place-order')" render=""/>
                          </div>
                          <div class="actions-toolbar" attr="id: getButtonId()" afterRender="renderPayPalButtons"/>
                          </div>
                          </div>



                          Finally run the following command



                          php bin/magento setup:static-content:deploy -f
                          php bin/magento c:f






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Aug 12 at 11:40









                          Soundararajan mSoundararajan m

                          549 bronze badges




                          549 bronze badges






























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Magento Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f214505%2fmagento-2-changing-the-paypal-logo-on-the-checkout-page%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                              Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                              Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form