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;
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 4 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