Move “Add to Wishlist” Button after “Add to Cart” in Product ViewMagento 2: How I can add Configurable products to cart from category view with selected optionsLayout move elementsMove a product-review summary below add to cart buttonMagento 2 - How to move the product price block before addtocart button?Add Products Manually Configuration Button IssueSeparating wishlist and compare on category pagesMagento 2: how to move the category add to wishlist and compare actions next to the priceMagento 2 - Move Button from Middle Column to Side Bar SectionMagento 2 add wishlist in add to cart blockMove Elements on Magento 2 Product Page
Would getting a natural 20 with a penalty still count as a critical hit?
What was the intention with the Commodore 128?
How to open terminal automatically when ubuntu boots up?
Eric Andre had a dream
Combinatorial Argument for Exponential and Logarithmic Function Being Inverse
Expressing a chain of boolean ORs using ILP
What's the point of writing that I know will never be used or read?
What allows us to use imaginary numbers?
The Lucky House
global variant of csname…endcsname
Ending a line of dialogue with "?!": Allowed or obnoxious?
μονάδαι as plural form of μονάς
Polar contour plot in Mathematica?
Adding things to bunches of things vs multiplication
Gofer work in exchange for Letter of Recommendation
What exactly happened to the 18 crew members who were reported as "missing" in "Q Who"?
Output with the same length always
Can I use images from my published papers in my thesis without copyright infringment?
Why was ramjet fuel used as hydraulic fluid during Saturn V checkout?
Why should P.I be willing to write strong LOR even if that means losing a undergraduate from his/her lab?
Can I submit a paper computer science conference using an alias if using my real name can cause legal trouble in my original country
What happened after the end of the Truman Show?
What is the purpose/function of this power inductor in parallel?
What modifiers are added to the attack and damage rolls of this unique longbow from Waterdeep: Dragon Heist?
Move “Add to Wishlist” Button after “Add to Cart” in Product View
Magento 2: How I can add Configurable products to cart from category view with selected optionsLayout move elementsMove a product-review summary below add to cart buttonMagento 2 - How to move the product price block before addtocart button?Add Products Manually Configuration Button IssueSeparating wishlist and compare on category pagesMagento 2: how to move the category add to wishlist and compare actions next to the priceMagento 2 - Move Button from Middle Column to Side Bar SectionMagento 2 add wishlist in add to cart blockMove Elements on Magento 2 Product Page
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How to move "Add to wishlist" button after "Add to cart"?
I try using move but it's just working on the configurable products. I want it to work too on the simple products.
Check my catalog_product_view.xml :
...
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" />
...
<container name="product.addto.wishlist" as="product_addto_wishlist" htmlClass="product wishlist" htmlTag="div">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</container>
...
Add to Wishlist button is not showing on simple products.
Configurable Products :
Thanks.
magento2 layout xml product-view-page
add a comment |
How to move "Add to wishlist" button after "Add to cart"?
I try using move but it's just working on the configurable products. I want it to work too on the simple products.
Check my catalog_product_view.xml :
...
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" />
...
<container name="product.addto.wishlist" as="product_addto_wishlist" htmlClass="product wishlist" htmlTag="div">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</container>
...
Add to Wishlist button is not showing on simple products.
Configurable Products :
Thanks.
magento2 layout xml product-view-page
add a comment |
How to move "Add to wishlist" button after "Add to cart"?
I try using move but it's just working on the configurable products. I want it to work too on the simple products.
Check my catalog_product_view.xml :
...
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" />
...
<container name="product.addto.wishlist" as="product_addto_wishlist" htmlClass="product wishlist" htmlTag="div">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</container>
...
Add to Wishlist button is not showing on simple products.
Configurable Products :
Thanks.
magento2 layout xml product-view-page
How to move "Add to wishlist" button after "Add to cart"?
I try using move but it's just working on the configurable products. I want it to work too on the simple products.
Check my catalog_product_view.xml :
...
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" />
...
<container name="product.addto.wishlist" as="product_addto_wishlist" htmlClass="product wishlist" htmlTag="div">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</container>
...
Add to Wishlist button is not showing on simple products.
Configurable Products :
Thanks.
magento2 layout xml product-view-page
magento2 layout xml product-view-page
edited Aug 6 at 6:49
Khushbu Mehta
3312 gold badges6 silver badges14 bronze badges
3312 gold badges6 silver badges14 bronze badges
asked Aug 21 '18 at 6:09
JackroseJackrose
3531 silver badge13 bronze badges
3531 silver badge13 bronze badges
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
I got solutions for my problem.
Just create catalog_product_view_type_simple.xml and use this code below:
...
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</referenceBlock>
...
add a comment |
Can you try this
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" />
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
add a comment |
Just add below code to catalog_product_view.xml file for the simple and configurable product:
For Simple Product
<referenceBlock name="product.info.addtocart">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
For Configurable Product
<referenceBlock name="product.info.addtocart.additional">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist.bottom" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
It will look like:
Wishlist in simple product
Wishlist in Configurable Products
Leave a comment if have any query
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%2f239014%2fmove-add-to-wishlist-button-after-add-to-cart-in-product-view%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I got solutions for my problem.
Just create catalog_product_view_type_simple.xml and use this code below:
...
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</referenceBlock>
...
add a comment |
I got solutions for my problem.
Just create catalog_product_view_type_simple.xml and use this code below:
...
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</referenceBlock>
...
add a comment |
I got solutions for my problem.
Just create catalog_product_view_type_simple.xml and use this code below:
...
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</referenceBlock>
...
I got solutions for my problem.
Just create catalog_product_view_type_simple.xml and use this code below:
...
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="product.info.addto" as="addto" template="Magento_Catalog::product/view/addto.phtml"/>
</referenceBlock>
...
answered Aug 21 '18 at 6:58
JackroseJackrose
3531 silver badge13 bronze badges
3531 silver badge13 bronze badges
add a comment |
add a comment |
Can you try this
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" />
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
add a comment |
Can you try this
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" />
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
add a comment |
Can you try this
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" />
Can you try this
<move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" />
edited Jul 25 at 6:31
Rishi Ranjan
54 bronze badges
54 bronze badges
answered Aug 21 '18 at 6:15
ShorabhShorabh
1,1316 silver badges15 bronze badges
1,1316 silver badges15 bronze badges
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
add a comment |
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.
– Jackrose
Aug 21 '18 at 6:20
add a comment |
Just add below code to catalog_product_view.xml file for the simple and configurable product:
For Simple Product
<referenceBlock name="product.info.addtocart">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
For Configurable Product
<referenceBlock name="product.info.addtocart.additional">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist.bottom" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
It will look like:
Wishlist in simple product
Wishlist in Configurable Products
Leave a comment if have any query
add a comment |
Just add below code to catalog_product_view.xml file for the simple and configurable product:
For Simple Product
<referenceBlock name="product.info.addtocart">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
For Configurable Product
<referenceBlock name="product.info.addtocart.additional">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist.bottom" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
It will look like:
Wishlist in simple product
Wishlist in Configurable Products
Leave a comment if have any query
add a comment |
Just add below code to catalog_product_view.xml file for the simple and configurable product:
For Simple Product
<referenceBlock name="product.info.addtocart">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
For Configurable Product
<referenceBlock name="product.info.addtocart.additional">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist.bottom" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
It will look like:
Wishlist in simple product
Wishlist in Configurable Products
Leave a comment if have any query
Just add below code to catalog_product_view.xml file for the simple and configurable product:
For Simple Product
<referenceBlock name="product.info.addtocart">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
For Configurable Product
<referenceBlock name="product.info.addtocart.additional">
<block class="MagentoWishlistBlockCatalogProductViewAddToWishlist" name="view.addto.wishlist.bottom" template="Magento_Catalog::product/view/addto/wishlist.phtml" />
</referenceBlock>
It will look like:
Wishlist in simple product
Wishlist in Configurable Products
Leave a comment if have any query
answered Aug 6 at 6:36
Rishi RanjanRishi Ranjan
54 bronze badges
54 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%2f239014%2fmove-add-to-wishlist-button-after-add-to-cart-in-product-view%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