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

          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