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
Is it possible to make sharp wind that can cut stuff from afar?
What typically incentivizes a professor to change jobs to a lower ranking university?
How to make payment on the internet without leaving a money trail?
Download, install and reboot computer at night if needed
Set-theoretical foundations of Mathematics with only bounded quantifiers
Do airline pilots ever risk not hearing communication directed to them specifically, from traffic controllers?
Why is an old chain unsafe?
What defenses are there against being summoned by the Gate spell?
Why are only specific transaction types accepted into the mempool?
XeLaTeX and pdfLaTeX ignore hyphenation
DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?
Are tax years 2016 & 2017 back taxes deductible for tax year 2018?
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
Example of a relative pronoun
Is there really no realistic way for a skeleton monster to move around without magic?
Why is this code 6.5x slower with optimizations enabled?
What makes Graph invariants so useful/important?
Infinite past with a beginning?
Why was the small council so happy for Tyrion to become the Master of Coin?
How is it possible to have an ability score that is less than 3?
Motorized valve interfering with button?
Can a German sentence have two subjects?
Draw simple lines in Inkscape
Is there a minimum number of transactions in a block?
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;
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
add a comment |
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
add a comment |
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
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
shopping-cart
asked Aug 11 '16 at 19:02
DianaDiana
1
1
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered 5 hours ago
Matej ĐakovićMatej Đaković
26028
26028
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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