How to disable shopping cart IconMagento How to include shopping cart block like this (picture)Move Cart to Header In Magento 1.8.1How can I disable the Magento shopping cartThe shopping cart items counter doesn't display 0 when there are no items in the cartHow to create Mouseover Shopping Cart Icon in right header?Text in Shopping Cart page is not uppercase?How to add custom data to persistent shopping cart?Change “Garbage Icon” in shopping cart?Magento 2: Add button next to “Shopping Cart” titleCan't add products to shopping cart / cart keeps loading Magento 2

How to report a triplet of septets in NMR tabulation?

What do you call a Matrix-like slowdown and camera movement effect?

whey we use polarized capacitor?

Why is this code 6.5x slower with optimizations enabled?

What typically incentivizes a professor to change jobs to a lower ranking university?

Validation accuracy vs Testing accuracy

Set-theoretical foundations of Mathematics with only bounded quantifiers

TGV timetables / schedules?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

Is there really no realistic way for a skeleton monster to move around without magic?

Can I make popcorn with any corn?

Why don't electromagnetic waves interact with each other?

If Manufacturer spice model and Datasheet give different values which should I use?

Email Account under attack (really) - anything I can do?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

How old can references or sources in a thesis be?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Shell script can be run only with sh command

How is this relation reflexive?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Work Breakdown with Tikz

Should I join office cleaning event for free?

Download, install and reboot computer at night if needed

How to add power-LED to my small amplifier?



How to disable shopping cart Icon


Magento How to include shopping cart block like this (picture)Move Cart to Header In Magento 1.8.1How can I disable the Magento shopping cartThe shopping cart items counter doesn't display 0 when there are no items in the cartHow to create Mouseover Shopping Cart Icon in right header?Text in Shopping Cart page is not uppercase?How to add custom data to persistent shopping cart?Change “Garbage Icon” in shopping cart?Magento 2: Add button next to “Shopping Cart” titleCan't add products to shopping cart / cart keeps loading Magento 2






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








0















I need to disable the shopping cart icon that is located at the top header of the webpage.
How do I disable the shopping cart icon on my website?










share|improve this question




























    0















    I need to disable the shopping cart icon that is located at the top header of the webpage.
    How do I disable the shopping cart icon on my website?










    share|improve this question
























      0












      0








      0








      I need to disable the shopping cart icon that is located at the top header of the webpage.
      How do I disable the shopping cart icon on my website?










      share|improve this question














      I need to disable the shopping cart icon that is located at the top header of the webpage.
      How do I disable the shopping cart icon on my website?







      shopping-cart






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 11 '16 at 19:02









      DianaDiana

      1




      1




















          2 Answers
          2






          active

          oldest

          votes


















          0














          Assuming you are using Magento 1.9 with RWD Theme, then locate this file:



          app/design/frontend/rwd/default/template/checkout/cart/minicart.phtml


          And delete (or comment out) this line:



          <span class="icon"></span>


          And that will remove the icon.



          EDIT: Fixed path name






          share|improve this answer

























          • I am using Magento ver. 1.9.0.1

            – Diana
            Aug 11 '16 at 19:34











          • Please upvote answer if you found it useful. Thanks.

            – Craig
            Aug 11 '16 at 20:18











          • Thank you, but I still see the icon.

            – Diana
            Aug 12 '16 at 20:56


















          0














          depends on what theme fallback you are using, copy file in your theme and remove line with this code:



          Enterprise File:



          app/design/frontend/enterprise/default/template/page/html/header.phtml


          Enterprise Code:




          <?php echo $this->getChildHtml('topCart') ?>



          RWD File:



          app/design/frontend/rwd/default/template/page/html/header.phtml


          RWD Code:




          <?php echo $this->getChildHtml('minicart_head'); ?>



          Best regards






          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%2f131127%2fhow-to-disable-shopping-cart-icon%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Assuming you are using Magento 1.9 with RWD Theme, then locate this file:



            app/design/frontend/rwd/default/template/checkout/cart/minicart.phtml


            And delete (or comment out) this line:



            <span class="icon"></span>


            And that will remove the icon.



            EDIT: Fixed path name






            share|improve this answer

























            • I am using Magento ver. 1.9.0.1

              – Diana
              Aug 11 '16 at 19:34











            • Please upvote answer if you found it useful. Thanks.

              – Craig
              Aug 11 '16 at 20:18











            • Thank you, but I still see the icon.

              – Diana
              Aug 12 '16 at 20:56















            0














            Assuming you are using Magento 1.9 with RWD Theme, then locate this file:



            app/design/frontend/rwd/default/template/checkout/cart/minicart.phtml


            And delete (or comment out) this line:



            <span class="icon"></span>


            And that will remove the icon.



            EDIT: Fixed path name






            share|improve this answer

























            • I am using Magento ver. 1.9.0.1

              – Diana
              Aug 11 '16 at 19:34











            • Please upvote answer if you found it useful. Thanks.

              – Craig
              Aug 11 '16 at 20:18











            • Thank you, but I still see the icon.

              – Diana
              Aug 12 '16 at 20:56













            0












            0








            0







            Assuming you are using Magento 1.9 with RWD Theme, then locate this file:



            app/design/frontend/rwd/default/template/checkout/cart/minicart.phtml


            And delete (or comment out) this line:



            <span class="icon"></span>


            And that will remove the icon.



            EDIT: Fixed path name






            share|improve this answer















            Assuming you are using Magento 1.9 with RWD Theme, then locate this file:



            app/design/frontend/rwd/default/template/checkout/cart/minicart.phtml


            And delete (or comment out) this line:



            <span class="icon"></span>


            And that will remove the icon.



            EDIT: Fixed path name







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 11 '16 at 19:40

























            answered Aug 11 '16 at 19:21









            CraigCraig

            9081620




            9081620












            • I am using Magento ver. 1.9.0.1

              – Diana
              Aug 11 '16 at 19:34











            • Please upvote answer if you found it useful. Thanks.

              – Craig
              Aug 11 '16 at 20:18











            • Thank you, but I still see the icon.

              – Diana
              Aug 12 '16 at 20:56

















            • I am using Magento ver. 1.9.0.1

              – Diana
              Aug 11 '16 at 19:34











            • Please upvote answer if you found it useful. Thanks.

              – Craig
              Aug 11 '16 at 20:18











            • Thank you, but I still see the icon.

              – Diana
              Aug 12 '16 at 20:56
















            I am using Magento ver. 1.9.0.1

            – Diana
            Aug 11 '16 at 19:34





            I am using Magento ver. 1.9.0.1

            – Diana
            Aug 11 '16 at 19:34













            Please upvote answer if you found it useful. Thanks.

            – Craig
            Aug 11 '16 at 20:18





            Please upvote answer if you found it useful. Thanks.

            – Craig
            Aug 11 '16 at 20:18













            Thank you, but I still see the icon.

            – Diana
            Aug 12 '16 at 20:56





            Thank you, but I still see the icon.

            – Diana
            Aug 12 '16 at 20:56













            0














            depends on what theme fallback you are using, copy file in your theme and remove line with this code:



            Enterprise File:



            app/design/frontend/enterprise/default/template/page/html/header.phtml


            Enterprise Code:




            <?php echo $this->getChildHtml('topCart') ?>



            RWD File:



            app/design/frontend/rwd/default/template/page/html/header.phtml


            RWD Code:




            <?php echo $this->getChildHtml('minicart_head'); ?>



            Best regards






            share|improve this answer



























              0














              depends on what theme fallback you are using, copy file in your theme and remove line with this code:



              Enterprise File:



              app/design/frontend/enterprise/default/template/page/html/header.phtml


              Enterprise Code:




              <?php echo $this->getChildHtml('topCart') ?>



              RWD File:



              app/design/frontend/rwd/default/template/page/html/header.phtml


              RWD Code:




              <?php echo $this->getChildHtml('minicart_head'); ?>



              Best regards






              share|improve this answer

























                0












                0








                0







                depends on what theme fallback you are using, copy file in your theme and remove line with this code:



                Enterprise File:



                app/design/frontend/enterprise/default/template/page/html/header.phtml


                Enterprise Code:




                <?php echo $this->getChildHtml('topCart') ?>



                RWD File:



                app/design/frontend/rwd/default/template/page/html/header.phtml


                RWD Code:




                <?php echo $this->getChildHtml('minicart_head'); ?>



                Best regards






                share|improve this answer













                depends on what theme fallback you are using, copy file in your theme and remove line with this code:



                Enterprise File:



                app/design/frontend/enterprise/default/template/page/html/header.phtml


                Enterprise Code:




                <?php echo $this->getChildHtml('topCart') ?>



                RWD File:



                app/design/frontend/rwd/default/template/page/html/header.phtml


                RWD Code:




                <?php echo $this->getChildHtml('minicart_head'); ?>



                Best regards







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 4 hours ago









                Matej ĐakovićMatej Đaković

                26028




                26028



























                    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%2f131127%2fhow-to-disable-shopping-cart-icon%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

                    Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                    Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

                    Aasi (pallopeli) Navigointivalikko