Magento 2.2.4 - Add to Cart Not Working after Move Add to Cart Buttons Below Image on Product View
I have tried the following code to move add to cart buttons below image in catalog_product_view.xml
Button has moved below that element but Add to Cart Button is not Working anymore.
<move element="product.info.addtocart" destination="product.info.media" after="product.media"/>
layout magento2.2 addtocart
add a comment |
I have tried the following code to move add to cart buttons below image in catalog_product_view.xml
Button has moved below that element but Add to Cart Button is not Working anymore.
<move element="product.info.addtocart" destination="product.info.media" after="product.media"/>
layout magento2.2 addtocart
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00
add a comment |
I have tried the following code to move add to cart buttons below image in catalog_product_view.xml
Button has moved below that element but Add to Cart Button is not Working anymore.
<move element="product.info.addtocart" destination="product.info.media" after="product.media"/>
layout magento2.2 addtocart
I have tried the following code to move add to cart buttons below image in catalog_product_view.xml
Button has moved below that element but Add to Cart Button is not Working anymore.
<move element="product.info.addtocart" destination="product.info.media" after="product.media"/>
layout magento2.2 addtocart
layout magento2.2 addtocart
edited yesterday
Teja Bhagavan Kollepara
2,93841847
2,93841847
asked Jun 19 '18 at 15:14
Vinay
9612
9612
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00
add a comment |
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00
add a comment |
1 Answer
1
active
oldest
votes
Try this:
<move element="product.info" destination="product.info.media" after="product.media"/>
Actually, in your code button out from add to cart form so form could not submit.
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
|
show 1 more 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%2f230535%2fmagento-2-2-4-add-to-cart-not-working-after-move-add-to-cart-buttons-below-ima%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 this:
<move element="product.info" destination="product.info.media" after="product.media"/>
Actually, in your code button out from add to cart form so form could not submit.
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
|
show 1 more comment
Try this:
<move element="product.info" destination="product.info.media" after="product.media"/>
Actually, in your code button out from add to cart form so form could not submit.
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
|
show 1 more comment
Try this:
<move element="product.info" destination="product.info.media" after="product.media"/>
Actually, in your code button out from add to cart form so form could not submit.
Try this:
<move element="product.info" destination="product.info.media" after="product.media"/>
Actually, in your code button out from add to cart form so form could not submit.
answered Jun 20 '18 at 8:42
kunj
2,5572423
2,5572423
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
|
show 1 more comment
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Welcome, happy to help you!
– kunj
Jun 20 '18 at 12:01
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Hi kunj, on configurable products swatches are also coming before add to cart button after putting the above code, how can i move only add to cart button below images on configurable products. and swatches in product.info.main element. Help in this please.
– Vinay
Jun 20 '18 at 12:31
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Solved, by adding, the following code " <move element="product.info.options.wrapper" destination="product.info.main" after="product.info.price"/> "
– Vinay
Jun 20 '18 at 13:42
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Add to Cart is still not working in this case :( Still Confused. Please help @kunj
– Vinay
Jun 20 '18 at 14:20
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
Actually, color swatch adding custom input field in that form so we can not move that swatch by XML.
– kunj
Jun 20 '18 at 14:21
|
show 1 more 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f230535%2fmagento-2-2-4-add-to-cart-not-working-after-move-add-to-cart-buttons-below-ima%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
Do you getting any console error? Is that shows cursor pointer while hover on button?
– kunj
Jun 20 '18 at 2:27
No there is no console error, and it shows cursor point while on hover, add to cart button is clickable as well, but it is not adding product to cart.
– Vinay
Jun 20 '18 at 6:00