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)
Pre-Employment Background Check With Consent For Future Checks
Check if object is null and return null
Storage of electrolytic capacitors - how long?
Why is the Sun approximated as a black body at ~ 5800 K?
What happens if I try to grapple an illusory duplicate from the Mirror Image spell?
Overlapping circles covering polygon
Language involving irrational number is not a CFL
Is there a distance limit for minecart tracks?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
Does the Crossbow Expert feat's extra crossbow attack work with the reaction attack from a Hunter ranger's Giant Killer feature?
Can I run 125kHz RF circuit on a breadboard?
How to reduce predictors the right way for a logistic regression model
ContourPlot — How do I color by contour curvature?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Why does the Persian emissary display a string of crowned skulls?
I'm just a whisper. Who am I?
Would a primitive species be able to learn English from reading books alone?
Can you identify this lizard-like creature I observed in the UK?
Animation: customize bounce interpolation
Given this phrasing in the lease, when should I pay my rent?
How much do grades matter for a future academia position?
Deciphering cause of death?
Anime with legendary swords made from talismans and a man who could change them with a shattered body
Origin of pigs as a species
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)
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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
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
magento-1.9 addtocart quote wishlist quoteitem
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♦ 6 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♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
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
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%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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
answered Feb 13 '17 at 12:58
Marius♦Marius
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
add a comment |
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
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%2f159615%2fwhen-will-predispatch-event-be-called%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