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;








2















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.



Simple Products



Configurable Products :



Configurable Products



Thanks.










share|improve this question
































    2















    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.



    Simple Products



    Configurable Products :



    Configurable Products



    Thanks.










    share|improve this question




























      2












      2








      2


      1






      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.



      Simple Products



      Configurable Products :



      Configurable Products



      Thanks.










      share|improve this question
















      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.



      Simple Products



      Configurable Products :



      Configurable Products



      Thanks.







      magento2 layout xml product-view-page






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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























          3 Answers
          3






          active

          oldest

          votes


















          2














          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>
          ...





          share|improve this answer
































            1














            Can you try this



             <move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" /> 





            share|improve this answer



























            • Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.

              – Jackrose
              Aug 21 '18 at 6:20


















            0














            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



            enter image description here



            Wishlist in Configurable Products



            enter image description here




            Leave a comment if have any query






            share|improve this answer



























              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%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









              2














              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>
              ...





              share|improve this answer





























                2














                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>
                ...





                share|improve this answer



























                  2












                  2








                  2







                  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>
                  ...





                  share|improve this answer













                  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>
                  ...






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 21 '18 at 6:58









                  JackroseJackrose

                  3531 silver badge13 bronze badges




                  3531 silver badge13 bronze badges


























                      1














                      Can you try this



                       <move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" /> 





                      share|improve this answer



























                      • Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.

                        – Jackrose
                        Aug 21 '18 at 6:20















                      1














                      Can you try this



                       <move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" /> 





                      share|improve this answer



























                      • Thanks for your answer, but still not working. Add to Wishlist button not showing on simple products.

                        – Jackrose
                        Aug 21 '18 at 6:20













                      1












                      1








                      1







                      Can you try this



                       <move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" /> 





                      share|improve this answer















                      Can you try this



                       <move element="product.addto.wishlist" destination="product.info.addtocart.additional" after="product.info.addtocart" /> 






                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      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

















                      • 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











                      0














                      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



                      enter image description here



                      Wishlist in Configurable Products



                      enter image description here




                      Leave a comment if have any query






                      share|improve this answer





























                        0














                        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



                        enter image description here



                        Wishlist in Configurable Products



                        enter image description here




                        Leave a comment if have any query






                        share|improve this answer



























                          0












                          0








                          0







                          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



                          enter image description here



                          Wishlist in Configurable Products



                          enter image description here




                          Leave a comment if have any query






                          share|improve this answer













                          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



                          enter image description here



                          Wishlist in Configurable Products



                          enter image description here




                          Leave a comment if have any query







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Aug 6 at 6:36









                          Rishi RanjanRishi Ranjan

                          54 bronze badges




                          54 bronze badges






























                              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%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





















































                              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

                              Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                              Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                              Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form