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 2CE 1.9.3.x: Customer cart (quote items) not merged correctly on login (new cart is replaced instead of merged)Cron deleting expired quotes

Is it legal for company to use my work email to pretend I still work there?

What typically incentivizes a professor to change jobs to a lower ranking university?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

How can I make my BBEG immortal short of making them a Lich or Vampire?

tikz: show 0 at the axis origin

The use of multiple foreign keys on same column in SQL Server

TGV timetables / schedules?

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

What is the word for reserving something for yourself before others do?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Languages that we cannot (dis)prove to be Context-Free

What does it mean to describe someone as a butt steak?

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

Why Is Death Allowed In the Matrix?

Why doesn't H₄O²⁺ exist?

What defenses are there against being summoned by the Gate spell?

Test whether all array elements are factors of a number

How to format long polynomial?

Why do I get two different answers for this counting problem?

can i play a electric guitar through a bass amp?

Why do falling prices hurt debtors?

Has the BBC provided arguments for saying Brexit being cancelled is unlikely?

How can bays and straits be determined in a procedurally generated map?



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 2CE 1.9.3.x: Customer cart (quote items) not merged correctly on login (new cart is replaced instead of merged)Cron deleting expired quotes






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom: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






























    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


























      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

      168k28323688




      168k28323688










      asked Feb 13 '17 at 12:46









      byebbbyebb

      114




      114




















          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

          168k28323688




          168k28323688












          • 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

          Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

          Masuk log Menu navigasi

          อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล