When will predispatch event be called?How to get the quote address object when user logged in?Changing custom option (text input) on checkout_cart_product_add_afterKeep products in shopping cart after customer logs outChange Price of configurable quote item with observerGuess quote_id based on a merged Quoteretrive quote cart after reorder and delete productCan I change the taxes on a quote item in magento2 programmatically?Adding products to cart programmatically with custom price in controller: Magento 2How to set a custom option to a bundle product when adding it to cartCE 1.9.3.x: Customer cart (quote items) not merged correctly on login (new cart is replaced instead of merged)

If the only attacker is removed from combat, is a creature still counted as having attacked this turn?

Overlapping circles covering polygon

Would a primitive species be able to learn English from reading books alone?

ContourPlot — How do I color by contour curvature?

Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?

Given this phrasing in the lease, when should I pay my rent?

Typing CO_2 easily

Make a Bowl of Alphabet Soup

I'm just a whisper. Who am I?

What is this high flying aircraft over Pennsylvania?

Limit max CPU usage SQL SERVER with WSRM

Do I have to take mana from my deck or hand when tapping a dual land?

Origin of pigs as a species

In One Punch Man, is King actually weak?

Possible Eco thriller, man invents a device to remove rain from glass

Is there a reason to prefer HFS+ over APFS for disk images in High Sierra and/or Mojave?

How to make a list of partial sums using forEach

Pre-Employment Background Check With Consent For Future Checks

Why didn’t Eve recognize the little cockroach as a living organism?

Do you waste sorcery points if you try to apply metamagic to a spell from a scroll but fail to cast it?

Sound waves in different octaves

What is the smallest number n> 5 so that 5 ^ n ends with "3125"?

How much do grades matter for a future academia position?

What is the meaning of "You've never met a graph you didn't like?"



When will predispatch event be called?


How to get the quote address object when user logged in?Changing custom option (text input) on checkout_cart_product_add_afterKeep products in shopping cart after customer logs outChange Price of configurable quote item with observerGuess quote_id based on a merged Quoteretrive quote cart after reorder and delete productCan I change the taxes on a quote item in magento2 programmatically?Adding products to cart programmatically with custom price in controller: Magento 2How to set a custom option to a bundle product when adding it to cartCE 1.9.3.x: Customer cart (quote items) not merged correctly on login (new cart is replaced instead of merged)













0















I want to know, if



 controller_action_predispatch_checkout_cart_add


will only be called, when a product is added to cart from product page, or if this event will also be called, when I add a product, which is on the wishlist of the customer to the shopping cart.



I have to deal with inconsistencies regarding my shopping cart, since I want to remove other products with certain attributes, which shouldn't be able to buy them together.



On my platform, every product which can be sold is UNIQUE and they all have a quantity of one. But sometimes it happens, that the computation of the price will take a product twice into account of the calculation.



Do you have any ideas or experience with altering the quote of the current shopping cart and even with old quotes that might be loaded, when a current quote is not used anymore?



I can provide code examples, if you think, that they might help you to better understand my problem.




It may work, if I change this code



 <controller_action_predispatch_checkout_cart_add>
<observers>
<customoptions>
<type>singleton</type>
<class>Namespace_Module_Model_Observer</class>
<method>checkoutCartProductAddBefore</method>
</customoptions>
</observers>
</controller_action_predispatch_checkout_cart_add>


to



 <sales_quote_product_add_after>
<observers>
<customoptions>
<type>singleton</type>
<class>Namespace_Module_Model_Observer</class>
<method>checkoutCartProductAddBefore</method>
</customoptions>
</observers>
</sales_quote_product_add_after>


What do you think?










share|improve this question
















bumped to the homepage by Community 7 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.



















    0















    I want to know, if



     controller_action_predispatch_checkout_cart_add


    will only be called, when a product is added to cart from product page, or if this event will also be called, when I add a product, which is on the wishlist of the customer to the shopping cart.



    I have to deal with inconsistencies regarding my shopping cart, since I want to remove other products with certain attributes, which shouldn't be able to buy them together.



    On my platform, every product which can be sold is UNIQUE and they all have a quantity of one. But sometimes it happens, that the computation of the price will take a product twice into account of the calculation.



    Do you have any ideas or experience with altering the quote of the current shopping cart and even with old quotes that might be loaded, when a current quote is not used anymore?



    I can provide code examples, if you think, that they might help you to better understand my problem.




    It may work, if I change this code



     <controller_action_predispatch_checkout_cart_add>
    <observers>
    <customoptions>
    <type>singleton</type>
    <class>Namespace_Module_Model_Observer</class>
    <method>checkoutCartProductAddBefore</method>
    </customoptions>
    </observers>
    </controller_action_predispatch_checkout_cart_add>


    to



     <sales_quote_product_add_after>
    <observers>
    <customoptions>
    <type>singleton</type>
    <class>Namespace_Module_Model_Observer</class>
    <method>checkoutCartProductAddBefore</method>
    </customoptions>
    </observers>
    </sales_quote_product_add_after>


    What do you think?










    share|improve this question
















    bumped to the homepage by Community 7 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.

















      0












      0








      0








      I want to know, if



       controller_action_predispatch_checkout_cart_add


      will only be called, when a product is added to cart from product page, or if this event will also be called, when I add a product, which is on the wishlist of the customer to the shopping cart.



      I have to deal with inconsistencies regarding my shopping cart, since I want to remove other products with certain attributes, which shouldn't be able to buy them together.



      On my platform, every product which can be sold is UNIQUE and they all have a quantity of one. But sometimes it happens, that the computation of the price will take a product twice into account of the calculation.



      Do you have any ideas or experience with altering the quote of the current shopping cart and even with old quotes that might be loaded, when a current quote is not used anymore?



      I can provide code examples, if you think, that they might help you to better understand my problem.




      It may work, if I change this code



       <controller_action_predispatch_checkout_cart_add>
      <observers>
      <customoptions>
      <type>singleton</type>
      <class>Namespace_Module_Model_Observer</class>
      <method>checkoutCartProductAddBefore</method>
      </customoptions>
      </observers>
      </controller_action_predispatch_checkout_cart_add>


      to



       <sales_quote_product_add_after>
      <observers>
      <customoptions>
      <type>singleton</type>
      <class>Namespace_Module_Model_Observer</class>
      <method>checkoutCartProductAddBefore</method>
      </customoptions>
      </observers>
      </sales_quote_product_add_after>


      What do you think?










      share|improve this question
















      I want to know, if



       controller_action_predispatch_checkout_cart_add


      will only be called, when a product is added to cart from product page, or if this event will also be called, when I add a product, which is on the wishlist of the customer to the shopping cart.



      I have to deal with inconsistencies regarding my shopping cart, since I want to remove other products with certain attributes, which shouldn't be able to buy them together.



      On my platform, every product which can be sold is UNIQUE and they all have a quantity of one. But sometimes it happens, that the computation of the price will take a product twice into account of the calculation.



      Do you have any ideas or experience with altering the quote of the current shopping cart and even with old quotes that might be loaded, when a current quote is not used anymore?



      I can provide code examples, if you think, that they might help you to better understand my problem.




      It may work, if I change this code



       <controller_action_predispatch_checkout_cart_add>
      <observers>
      <customoptions>
      <type>singleton</type>
      <class>Namespace_Module_Model_Observer</class>
      <method>checkoutCartProductAddBefore</method>
      </customoptions>
      </observers>
      </controller_action_predispatch_checkout_cart_add>


      to



       <sales_quote_product_add_after>
      <observers>
      <customoptions>
      <type>singleton</type>
      <class>Namespace_Module_Model_Observer</class>
      <method>checkoutCartProductAddBefore</method>
      </customoptions>
      </observers>
      </sales_quote_product_add_after>


      What do you think?







      magento-1.9 addtocart quote wishlist quoteitem






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 13 '17 at 14:19









      Marius

      167k28319685




      167k28319685










      asked Feb 13 '17 at 12:46









      byebbbyebb

      114




      114





      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















          1 Answer
          1






          active

          oldest

          votes


















          0














          controller_action_predispatch_checkout_cart_add is dispatched everytime you call the url checkout/cart/add.



          When you add something to the cart from the wishlist you won't call the url mentioned above. Instead wishlist/index/cart action will be called.



          If you want a single event that is dispatched every time you add something to the cart you can use sales_quote_product_add_after. but this one is dispatched immediately after a product is added to the cart.






          share|improve this answer























          • what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

            – byebb
            Feb 13 '17 at 13:22












          • It should work. I think

            – Marius
            Feb 13 '17 at 14:19










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



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f159615%2fwhen-will-predispatch-event-be-called%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









          0














          controller_action_predispatch_checkout_cart_add is dispatched everytime you call the url checkout/cart/add.



          When you add something to the cart from the wishlist you won't call the url mentioned above. Instead wishlist/index/cart action will be called.



          If you want a single event that is dispatched every time you add something to the cart you can use sales_quote_product_add_after. but this one is dispatched immediately after a product is added to the cart.






          share|improve this answer























          • what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

            – byebb
            Feb 13 '17 at 13:22












          • It should work. I think

            – Marius
            Feb 13 '17 at 14:19















          0














          controller_action_predispatch_checkout_cart_add is dispatched everytime you call the url checkout/cart/add.



          When you add something to the cart from the wishlist you won't call the url mentioned above. Instead wishlist/index/cart action will be called.



          If you want a single event that is dispatched every time you add something to the cart you can use sales_quote_product_add_after. but this one is dispatched immediately after a product is added to the cart.






          share|improve this answer























          • what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

            – byebb
            Feb 13 '17 at 13:22












          • It should work. I think

            – Marius
            Feb 13 '17 at 14:19













          0












          0








          0







          controller_action_predispatch_checkout_cart_add is dispatched everytime you call the url checkout/cart/add.



          When you add something to the cart from the wishlist you won't call the url mentioned above. Instead wishlist/index/cart action will be called.



          If you want a single event that is dispatched every time you add something to the cart you can use sales_quote_product_add_after. but this one is dispatched immediately after a product is added to the cart.






          share|improve this answer













          controller_action_predispatch_checkout_cart_add is dispatched everytime you call the url checkout/cart/add.



          When you add something to the cart from the wishlist you won't call the url mentioned above. Instead wishlist/index/cart action will be called.



          If you want a single event that is dispatched every time you add something to the cart you can use sales_quote_product_add_after. but this one is dispatched immediately after a product is added to the cart.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Feb 13 '17 at 12:58









          MariusMarius

          167k28319685




          167k28319685












          • what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

            – byebb
            Feb 13 '17 at 13:22












          • It should work. I think

            – Marius
            Feb 13 '17 at 14:19

















          • what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

            – byebb
            Feb 13 '17 at 13:22












          • It should work. I think

            – Marius
            Feb 13 '17 at 14:19
















          what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

          – byebb
          Feb 13 '17 at 13:22






          what do you think about my answer above? i cannot well-format a comment for code.. therefore I used the answer function

          – byebb
          Feb 13 '17 at 13:22














          It should work. I think

          – Marius
          Feb 13 '17 at 14:19





          It should work. I think

          – Marius
          Feb 13 '17 at 14:19

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f159615%2fwhen-will-predispatch-event-be-called%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

          Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

          How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2