How can i add custom button (not add to cart) in product page in Magento2?Add a “Download Product-Informations in a PDF” Button to a product pageMagento 1.9 add custom button in admin order grid pageCustom “add to cart” button not updating minicartAdd custom button to PageactionsAdd new button in product page in M2I wish to add custom section in product detail page in magento 2Additional Add to Cart ButtonMagento2 : How to show button in admin for custom module page?how to add another add to cart button in product page in magento2Add button on product page

Developers demotivated due to working on same project for more than 2 years

Non-deterministic Finite Automata | Sipser Example 1.16

correct spelling of "carruffel" (fuzz, hustle, all that jazz)

Is taking modulus on both sides of an equation valid?

How much Replacement does this axiom provide?

Why would a switch ever send an ARP request for a MAC address when it can just wait for the first packet to be received from a device?

Automatically anti-predictably assemble an alliterative aria

How to distinguish PICTURE OF ME and PICTURE OF MINE in Chinese?

Is the expression "To think you would stoop so low" often misused?

Why do the lights go out when someone enters the dining room on this ship?

Anabelian geometry ~ higher category theory

How does emacs `shell-mode` know to prompt for sudo?

Missouri raptors have wild hairdos

Smallest Guaranteed hash collision cycle length

Safety when modifying old electrical work

Jesus' words on the Jews

Magento 2: How to get type columns of table in sql?

What's the difference between "за ... от" and "в ... от"?

Why does the headset man not get on the tractor?

Entering the UK as a British citizen who is a Canadian permanent resident

Formal Definition of Dot Product

Labeling matrices/rectangles and drawing Sigma inside rectangle

What was the significance of Varys' little girl?

How do employ ' ("prime") in math mode at the correct depth?



How can i add custom button (not add to cart) in product page in Magento2?


Add a “Download Product-Informations in a PDF” Button to a product pageMagento 1.9 add custom button in admin order grid pageCustom “add to cart” button not updating minicartAdd custom button to PageactionsAdd new button in product page in M2I wish to add custom section in product detail page in magento 2Additional Add to Cart ButtonMagento2 : How to show button in admin for custom module page?how to add another add to cart button in product page in magento2Add button on product page






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to add a new button to the product page , in which file can I add or should I create a module for this?



enter image description here










share|improve this question






























    0















    I want to add a new button to the product page , in which file can I add or should I create a module for this?



    enter image description here










    share|improve this question


























      0












      0








      0








      I want to add a new button to the product page , in which file can I add or should I create a module for this?



      enter image description here










      share|improve this question
















      I want to add a new button to the product page , in which file can I add or should I create a module for this?



      enter image description here







      magento2 magento2.2 magento2.3 product-page custom-button






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 9 at 5:57









      Muhammad Hasham

      3,80231656




      3,80231656










      asked Mar 5 at 11:22









      Robinio TorRobinio Tor

      33111




      33111




















          1 Answer
          1






          active

          oldest

          votes


















          2














          Using Block, we can display various information related to the product such as: Button, chart, discount, offers & deals, terms and conditions or caution etc.



          Firstly, you need to create your custom module and after that you to create block using following code into your catalog_product_view.xml file.
          appcodeVendorExtensionviewfrontendlayoutcatalog_product_view.xml



           <?xml version="1.0"?>
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
          <body>
          <referenceContainer name="product.info.form.content">

          <block class="VendorExtensionBlockCatalogProductViewEnquiry" name="product.info.enquiry" after="product.info.addtocart"
          template="Vendo_Extension::catalog/product/view/file.phtml">
          </block>
          </referenceContainer>
          </body>
          </page>


          Now, you need to create another file and named it as ‘File.phtml’, in which you have to add your custom code which you want to display in your custom block.
          appcodeVendorExtensionviewfrontendtemplatescatalogproductviewfile.phtml



          Lastly, you need to create one block ‘Enquiry.php’ file here. In Which you can add your own logical functions.
          VendorExtensionBlockCatalogProductViewEnquiry.php



          I hope this will help






          share|improve this answer























          • Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

            – Robinio Tor
            Mar 5 at 11:33











          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%2f264467%2fhow-can-i-add-custom-button-not-add-to-cart-in-product-page-in-magento2%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









          2














          Using Block, we can display various information related to the product such as: Button, chart, discount, offers & deals, terms and conditions or caution etc.



          Firstly, you need to create your custom module and after that you to create block using following code into your catalog_product_view.xml file.
          appcodeVendorExtensionviewfrontendlayoutcatalog_product_view.xml



           <?xml version="1.0"?>
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
          <body>
          <referenceContainer name="product.info.form.content">

          <block class="VendorExtensionBlockCatalogProductViewEnquiry" name="product.info.enquiry" after="product.info.addtocart"
          template="Vendo_Extension::catalog/product/view/file.phtml">
          </block>
          </referenceContainer>
          </body>
          </page>


          Now, you need to create another file and named it as ‘File.phtml’, in which you have to add your custom code which you want to display in your custom block.
          appcodeVendorExtensionviewfrontendtemplatescatalogproductviewfile.phtml



          Lastly, you need to create one block ‘Enquiry.php’ file here. In Which you can add your own logical functions.
          VendorExtensionBlockCatalogProductViewEnquiry.php



          I hope this will help






          share|improve this answer























          • Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

            – Robinio Tor
            Mar 5 at 11:33















          2














          Using Block, we can display various information related to the product such as: Button, chart, discount, offers & deals, terms and conditions or caution etc.



          Firstly, you need to create your custom module and after that you to create block using following code into your catalog_product_view.xml file.
          appcodeVendorExtensionviewfrontendlayoutcatalog_product_view.xml



           <?xml version="1.0"?>
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
          <body>
          <referenceContainer name="product.info.form.content">

          <block class="VendorExtensionBlockCatalogProductViewEnquiry" name="product.info.enquiry" after="product.info.addtocart"
          template="Vendo_Extension::catalog/product/view/file.phtml">
          </block>
          </referenceContainer>
          </body>
          </page>


          Now, you need to create another file and named it as ‘File.phtml’, in which you have to add your custom code which you want to display in your custom block.
          appcodeVendorExtensionviewfrontendtemplatescatalogproductviewfile.phtml



          Lastly, you need to create one block ‘Enquiry.php’ file here. In Which you can add your own logical functions.
          VendorExtensionBlockCatalogProductViewEnquiry.php



          I hope this will help






          share|improve this answer























          • Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

            – Robinio Tor
            Mar 5 at 11:33













          2












          2








          2







          Using Block, we can display various information related to the product such as: Button, chart, discount, offers & deals, terms and conditions or caution etc.



          Firstly, you need to create your custom module and after that you to create block using following code into your catalog_product_view.xml file.
          appcodeVendorExtensionviewfrontendlayoutcatalog_product_view.xml



           <?xml version="1.0"?>
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
          <body>
          <referenceContainer name="product.info.form.content">

          <block class="VendorExtensionBlockCatalogProductViewEnquiry" name="product.info.enquiry" after="product.info.addtocart"
          template="Vendo_Extension::catalog/product/view/file.phtml">
          </block>
          </referenceContainer>
          </body>
          </page>


          Now, you need to create another file and named it as ‘File.phtml’, in which you have to add your custom code which you want to display in your custom block.
          appcodeVendorExtensionviewfrontendtemplatescatalogproductviewfile.phtml



          Lastly, you need to create one block ‘Enquiry.php’ file here. In Which you can add your own logical functions.
          VendorExtensionBlockCatalogProductViewEnquiry.php



          I hope this will help






          share|improve this answer













          Using Block, we can display various information related to the product such as: Button, chart, discount, offers & deals, terms and conditions or caution etc.



          Firstly, you need to create your custom module and after that you to create block using following code into your catalog_product_view.xml file.
          appcodeVendorExtensionviewfrontendlayoutcatalog_product_view.xml



           <?xml version="1.0"?>
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
          <body>
          <referenceContainer name="product.info.form.content">

          <block class="VendorExtensionBlockCatalogProductViewEnquiry" name="product.info.enquiry" after="product.info.addtocart"
          template="Vendo_Extension::catalog/product/view/file.phtml">
          </block>
          </referenceContainer>
          </body>
          </page>


          Now, you need to create another file and named it as ‘File.phtml’, in which you have to add your custom code which you want to display in your custom block.
          appcodeVendorExtensionviewfrontendtemplatescatalogproductviewfile.phtml



          Lastly, you need to create one block ‘Enquiry.php’ file here. In Which you can add your own logical functions.
          VendorExtensionBlockCatalogProductViewEnquiry.php



          I hope this will help







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 5 at 11:26









          Muhammad HashamMuhammad Hasham

          3,80231656




          3,80231656












          • Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

            – Robinio Tor
            Mar 5 at 11:33

















          • Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

            – Robinio Tor
            Mar 5 at 11:33
















          Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

          – Robinio Tor
          Mar 5 at 11:33





          Muhammad Hasham, of course, but after 5 minutes I’ll mark it, now it doesn't allow, "You can accept an answer in 5 minutes". ;)

          – Robinio Tor
          Mar 5 at 11:33

















          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%2f264467%2fhow-can-i-add-custom-button-not-add-to-cart-in-product-page-in-magento2%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

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

          Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

          Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?