Magento 2: How to decrements item qty?Magento 2 - Get category id of products in shopping cartSet custom price of product when adding to cart code not workingMagento 2: How to add attribute flag to quote item?How to get configurable child product quantity from cart itemAllow only one qty of item into cart in Magento 2How to delete cart Item by SKU or productId in magento 2Why V1/guest-carts/cart-Id/ PUT api is not move guest cart item to customer cart in magento-2.2.7?Update all quote items with qty 1 in magento2I want to show total qty of items instead of number of item in cartItem not deleting from quote in Magento2
On the feasibility of space battleships
How to write triplets in 4/4 time without using a 3 on top of the notes all the time
What professions would a medieval village with a population of 100 need?
What is the hex versus octal timeline?
Church Booleans
How big would a Daddy Longlegs Spider need to be to kill an average Human?
Fancy String Replace
Did the British navy fail to take into account the ballistics correction due to Coriolis force during WW1 Falkland Islands battle?
How to persuade recruiters to send me the Job Description?
System to validate run time complexity requirements
Is it appropriate for a prospective landlord to ask me for my credit report?
How do I find the fastest route from Heathrow to an address in London using all forms of transport?
Science fiction short story where aliens contact a drunk about Earth's impending destruction
Are illustrations in novels frowned upon?
What is the appropriate benchmark for a Long/Short VIX futures strategy?
If all stars rotate, why was there a theory developed, that requires non-rotating stars?
In an emergency, how do I find and share my position?
Was Switzerland really impossible to invade during WW2?
confused about grep and the * wildcard
A list of proofs of "Coherent topoi have enough points"
In what ways can a Non-paladin access Paladin spells?
Is there a known non-euclidean geometry where two concentric circles of different radii can intersect? (as in the novel "The Universe Between")
What is wrong about this application of Kirchhoffs Current Law?
Three Singles in Three Clubs
Magento 2: How to decrements item qty?
Magento 2 - Get category id of products in shopping cartSet custom price of product when adding to cart code not workingMagento 2: How to add attribute flag to quote item?How to get configurable child product quantity from cart itemAllow only one qty of item into cart in Magento 2How to delete cart Item by SKU or productId in magento 2Why V1/guest-carts/cart-Id/ PUT api is not move guest cart item to customer cart in magento-2.2.7?Update all quote items with qty 1 in magento2I want to show total qty of items instead of number of item in cartItem not deleting from quote in Magento2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to decrements item qty programmatically.
$item = $this->cart->getQuote()->getItemById($itemId);
$qty = $item->getQty();
if($qty > 0)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->getProduct()->setIsSuperMode(true);
$item->save();
$this->cart->save();
Please help me in this.
magento2 quantity quoteitem
add a comment |
I want to decrements item qty programmatically.
$item = $this->cart->getQuote()->getItemById($itemId);
$qty = $item->getQty();
if($qty > 0)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->getProduct()->setIsSuperMode(true);
$item->save();
$this->cart->save();
Please help me in this.
magento2 quantity quoteitem
add a comment |
I want to decrements item qty programmatically.
$item = $this->cart->getQuote()->getItemById($itemId);
$qty = $item->getQty();
if($qty > 0)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->getProduct()->setIsSuperMode(true);
$item->save();
$this->cart->save();
Please help me in this.
magento2 quantity quoteitem
I want to decrements item qty programmatically.
$item = $this->cart->getQuote()->getItemById($itemId);
$qty = $item->getQty();
if($qty > 0)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->getProduct()->setIsSuperMode(true);
$item->save();
$this->cart->save();
Please help me in this.
magento2 quantity quoteitem
magento2 quantity quoteitem
asked Aug 9 at 14:52
Masud ShaikhMasud Shaikh
4322 silver badges12 bronze badges
4322 silver badges12 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Try with this code:
$item = $this->cart->getQuote()->getItemById($itemId);
if($item)
$qty = $item->getQty();
if($qty > 2)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->save();
$this->cart->getQuote()->save();
Also, you have to Update Mini Cart using sections.xml When you hitting this above code.
See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/
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%2f285013%2fmagento-2-how-to-decrements-item-qty%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
Try with this code:
$item = $this->cart->getQuote()->getItemById($itemId);
if($item)
$qty = $item->getQty();
if($qty > 2)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->save();
$this->cart->getQuote()->save();
Also, you have to Update Mini Cart using sections.xml When you hitting this above code.
See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/
add a comment |
Try with this code:
$item = $this->cart->getQuote()->getItemById($itemId);
if($item)
$qty = $item->getQty();
if($qty > 2)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->save();
$this->cart->getQuote()->save();
Also, you have to Update Mini Cart using sections.xml When you hitting this above code.
See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/
add a comment |
Try with this code:
$item = $this->cart->getQuote()->getItemById($itemId);
if($item)
$qty = $item->getQty();
if($qty > 2)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->save();
$this->cart->getQuote()->save();
Also, you have to Update Mini Cart using sections.xml When you hitting this above code.
See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/
Try with this code:
$item = $this->cart->getQuote()->getItemById($itemId);
if($item)
$qty = $item->getQty();
if($qty > 2)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->save();
$this->cart->getQuote()->save();
Also, you have to Update Mini Cart using sections.xml When you hitting this above code.
See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/
answered Aug 9 at 15:14
Amit Bera♦Amit Bera
63.1k16 gold badges85 silver badges183 bronze badges
63.1k16 gold badges85 silver badges183 bronze badges
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%2f285013%2fmagento-2-how-to-decrements-item-qty%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