The difference of “remove product links” in cart and minicart (rwd theme)Error with the urlDecodeAndEscape and to delete an item from the cartPayPalPro - AdvancedMagento - Invalid block typeMagento Custom HeaderWhat could cause error related to “dashboard/tunnel/key”Checkout redirecting to the cart pageUnable to delete the update product from minicart through ajaxError while saving product in admin panelThere has been an error processing your request error while going to the pageMagento 1 with Php 7.2, add to cart error if product have option
How do I run a game when my PCs have different approaches to combat?
Other than a swing wing, what types of variable geometry have flown?
Why are angular mometum and angular velocity not necessarily parallel, but linear momentum and linear velocity are always parallel?
Why is a dedicated QA team member necessary?
Strange Cron Job takes up 100% of CPU Ubuntu 18 LTS Server
Why did computer video outputs go from digital to analog, then back to digital?
Would it be a good idea to memorize relative interval positions on guitar?
Invert Some Switches on a Switchboard
How can I stop myself from micromanaging other PCs' actions?
401(k) investment after being fired. Do I own it?
Are gangsters hired to attack people at a train station classified as a terrorist attack?
Why is chess failing to attract big name sponsors?
How may I shorten this shell script?
Does static fire reduce reliability?
Character Frequency in a String
How were the LM astronauts supported during the moon landing and ascent? What were the max G's on them during these phases?
Problem loading expl3 in plain TeX
Inadvertently nuked my disk permission structure - why?
Company requiring me to let them review research from before I was hired
Keeping an "hot eyeball planet" wet
Is there a published campaign where a missing artifact or a relic is creating trouble by its absence?
How do professional electronic musicians/sound engineers combat listening fatigue?
How can I tell if there was a power cut while I was out?
What is "ass door"?
The difference of “remove product links” in cart and minicart (rwd theme)
Error with the urlDecodeAndEscape and to delete an item from the cartPayPalPro - AdvancedMagento - Invalid block typeMagento Custom HeaderWhat could cause error related to “dashboard/tunnel/key”Checkout redirecting to the cart pageUnable to delete the update product from minicart through ajaxError while saving product in admin panelThere has been an error processing your request error while going to the pageMagento 1 with Php 7.2, add to cart error if product have option
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Looking at the remove product links I found two different below codes:
In .../checkout/cart/item/default.phtml
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove Item')) ?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove Item') ?></a>
In .../checkout/cart/minicart/default.phtml
<a href="<?php echo $this->getAjaxDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove This Item')) ?>"
data-confirm="<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>"
class="remove">
<?php echo $this->__('Remove Item') ?>
</a>
Considering the below error log we have, I'm wondering if the minicart's remove link can be the same as cart once?
a:5:i:0;s:16:"Invalid form key";i:1;s:912:"#0 /Installtion path/app/code/local/Mage/Checkout/controllers/CartController.php(616): Mage::throwException('Invalid form ke...')
#1 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Action.php(418): Mage_Checkout_CartController->ajaxDeleteAction()
#2 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('ajaxDelete')
#3 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#4 /Installtion path/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#5 /Installtion path/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#6 /Installtion path/index.php(83): Mage::run('mystore', 'store')
#7 main";s:3:"url";s:138:"/checkout/cart/ajaxDelete/id/455909/uenc/aHR0cDovL3d3dy5kaWdpc2hvcC5maS9rb3RpLXZhcGFhLWFpa2EvdHlva2FsdXQvdHlva2FsdWplbi1ha3V0Lmh0bWw_cD0y/";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:11:"mystore";
magento-1.9 cart rwd-theme mini-cart delete
add a comment |
Looking at the remove product links I found two different below codes:
In .../checkout/cart/item/default.phtml
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove Item')) ?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove Item') ?></a>
In .../checkout/cart/minicart/default.phtml
<a href="<?php echo $this->getAjaxDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove This Item')) ?>"
data-confirm="<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>"
class="remove">
<?php echo $this->__('Remove Item') ?>
</a>
Considering the below error log we have, I'm wondering if the minicart's remove link can be the same as cart once?
a:5:i:0;s:16:"Invalid form key";i:1;s:912:"#0 /Installtion path/app/code/local/Mage/Checkout/controllers/CartController.php(616): Mage::throwException('Invalid form ke...')
#1 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Action.php(418): Mage_Checkout_CartController->ajaxDeleteAction()
#2 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('ajaxDelete')
#3 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#4 /Installtion path/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#5 /Installtion path/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#6 /Installtion path/index.php(83): Mage::run('mystore', 'store')
#7 main";s:3:"url";s:138:"/checkout/cart/ajaxDelete/id/455909/uenc/aHR0cDovL3d3dy5kaWdpc2hvcC5maS9rb3RpLXZhcGFhLWFpa2EvdHlva2FsdXQvdHlva2FsdWplbi1ha3V0Lmh0bWw_cD0y/";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:11:"mystore";
magento-1.9 cart rwd-theme mini-cart delete
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11
add a comment |
Looking at the remove product links I found two different below codes:
In .../checkout/cart/item/default.phtml
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove Item')) ?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove Item') ?></a>
In .../checkout/cart/minicart/default.phtml
<a href="<?php echo $this->getAjaxDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove This Item')) ?>"
data-confirm="<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>"
class="remove">
<?php echo $this->__('Remove Item') ?>
</a>
Considering the below error log we have, I'm wondering if the minicart's remove link can be the same as cart once?
a:5:i:0;s:16:"Invalid form key";i:1;s:912:"#0 /Installtion path/app/code/local/Mage/Checkout/controllers/CartController.php(616): Mage::throwException('Invalid form ke...')
#1 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Action.php(418): Mage_Checkout_CartController->ajaxDeleteAction()
#2 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('ajaxDelete')
#3 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#4 /Installtion path/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#5 /Installtion path/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#6 /Installtion path/index.php(83): Mage::run('mystore', 'store')
#7 main";s:3:"url";s:138:"/checkout/cart/ajaxDelete/id/455909/uenc/aHR0cDovL3d3dy5kaWdpc2hvcC5maS9rb3RpLXZhcGFhLWFpa2EvdHlva2FsdXQvdHlva2FsdWplbi1ha3V0Lmh0bWw_cD0y/";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:11:"mystore";
magento-1.9 cart rwd-theme mini-cart delete
Looking at the remove product links I found two different below codes:
In .../checkout/cart/item/default.phtml
<a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove Item')) ?>" class="btn-remove btn-remove2"><?php echo $this->__('Remove Item') ?></a>
In .../checkout/cart/minicart/default.phtml
<a href="<?php echo $this->getAjaxDeleteUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Remove This Item')) ?>"
data-confirm="<?php echo $this->__('Are you sure you would like to remove this item from the shopping cart?') ?>"
class="remove">
<?php echo $this->__('Remove Item') ?>
</a>
Considering the below error log we have, I'm wondering if the minicart's remove link can be the same as cart once?
a:5:i:0;s:16:"Invalid form key";i:1;s:912:"#0 /Installtion path/app/code/local/Mage/Checkout/controllers/CartController.php(616): Mage::throwException('Invalid form ke...')
#1 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Action.php(418): Mage_Checkout_CartController->ajaxDeleteAction()
#2 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(254): Mage_Core_Controller_Varien_Action->dispatch('ajaxDelete')
#3 /Installtion path/app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#4 /Installtion path/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch()
#5 /Installtion path/app/Mage.php(684): Mage_Core_Model_App->run(Array)
#6 /Installtion path/index.php(83): Mage::run('mystore', 'store')
#7 main";s:3:"url";s:138:"/checkout/cart/ajaxDelete/id/455909/uenc/aHR0cDovL3d3dy5kaWdpc2hvcC5maS9rb3RpLXZhcGFhLWFpa2EvdHlva2FsdXQvdHlva2FsdWplbi1ha3V0Lmh0bWw_cD0y/";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:11:"mystore";
magento-1.9 cart rwd-theme mini-cart delete
magento-1.9 cart rwd-theme mini-cart delete
asked Jul 12 '16 at 10:01
ZinatZinat
1,07413 silver badges33 bronze badges
1,07413 silver badges33 bronze badges
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11
add a comment |
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11
add a comment |
1 Answer
1
active
oldest
votes
Need to copy core file appcodecoreMageCheckoutBlockCartItemRenderer.php
in local appcodelocalMageCheckoutBlockCartItemRenderer.php
or override block file Renderer.php
in local
Replace code from
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
);
To
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
)."form_key/" . Mage::getSingleton('core/session')->getFormKey();
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
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%2f125327%2fthe-difference-of-remove-product-links-in-cart-and-minicart-rwd-theme%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Need to copy core file appcodecoreMageCheckoutBlockCartItemRenderer.php
in local appcodelocalMageCheckoutBlockCartItemRenderer.php
or override block file Renderer.php
in local
Replace code from
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
);
To
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
)."form_key/" . Mage::getSingleton('core/session')->getFormKey();
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
add a comment |
Need to copy core file appcodecoreMageCheckoutBlockCartItemRenderer.php
in local appcodelocalMageCheckoutBlockCartItemRenderer.php
or override block file Renderer.php
in local
Replace code from
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
);
To
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
)."form_key/" . Mage::getSingleton('core/session')->getFormKey();
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
add a comment |
Need to copy core file appcodecoreMageCheckoutBlockCartItemRenderer.php
in local appcodelocalMageCheckoutBlockCartItemRenderer.php
or override block file Renderer.php
in local
Replace code from
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
);
To
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
)."form_key/" . Mage::getSingleton('core/session')->getFormKey();
Need to copy core file appcodecoreMageCheckoutBlockCartItemRenderer.php
in local appcodelocalMageCheckoutBlockCartItemRenderer.php
or override block file Renderer.php
in local
Replace code from
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
);
To
public function getAjaxDeleteUrl()
return $this->getUrl(
'checkout/cart/ajaxDelete',
array(
'id'=>$this->getItem()->getId(),
Mage_Core_Controller_Front_Action::PARAM_NAME_URL_ENCODED => $this->helper('core/url')->getEncodedUrl(),
'_secure' => $this->_getApp()->getStore()->isCurrentlySecure(),
)
)."form_key/" . Mage::getSingleton('core/session')->getFormKey();
edited Jul 12 '16 at 11:06
answered Jul 12 '16 at 10:36
AbdulAbdul
8,3491 gold badge12 silver badges36 bronze badges
8,3491 gold badge12 silver badges36 bronze badges
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
add a comment |
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
Now I get below after trying to delete the product from minicart window:"qty":0,"content":"n<div id="minicart-error-message" class="minicart-message"></div>n<div id="minicart-success-message" class="minicart-message"></div>nn<div class="minicart-wrapper">nn <p class="block-subtitle">n Recent toegevoegd <a class="close skip-link-close" href="#" title="Sluiten">×</a>n </p>nn <p class="empty">Je hebt niets in je winkelwagen.</p>nn </div>n","success":1,"message":"Item was removed successfully."
– Zinat
Jul 13 '16 at 6:06
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
By the way above conetnt appears in browser not log file
– Zinat
Jul 13 '16 at 6:42
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%2f125327%2fthe-difference-of-remove-product-links-in-cart-and-minicart-rwd-theme%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
have you trying to removed product in cart right?
– Abdul
Jul 12 '16 at 10:09
If you mean about the error log, yes it is for removing product from cart.
– Zinat
Jul 12 '16 at 10:11