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

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

                              Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

                              Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?