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
GPS Rollover on Android Smartphones
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
Motorized valve interfering with button?
Prevent a directory in /tmp from being deleted
What do you call a Matrix-like slowdown and camera movement effect?
TGV timetables / schedules?
Download, install and reboot computer at night if needed
Why Is Death Allowed In the Matrix?
declaring a variable twice in IIFE
What makes Graph invariants so useful/important?
What are these boxed doors outside store fronts in New York?
Do Phineas and Ferb ever actually get busted in real time?
Example of a relative pronoun
What is the command to reset a PC without deleting any files
XeLaTeX and pdfLaTeX ignore hyphenation
"which" command doesn't work / path of Safari?
Why don't electromagnetic waves interact with each other?
What would happen to a modern skyscraper if it rains micro blackholes?
Work Breakdown with Tikz
How is it possible to have an ability score that is less than 3?
What typically incentivizes a professor to change jobs to a lower ranking university?
Do airline pilots ever risk not hearing communication directed to them specifically, from traffic controllers?
Patience, young "Padovan"
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
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 3 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