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;
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?
magento2 magento2.2 magento2.3 product-page custom-button
add a comment |
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?
magento2 magento2.2 magento2.3 product-page custom-button
add a comment |
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?
magento2 magento2.2 magento2.3 product-page custom-button
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?
magento2 magento2.2 magento2.3 product-page custom-button
magento2 magento2.2 magento2.3 product-page custom-button
edited May 9 at 5:57
Muhammad Hasham
3,80231656
3,80231656
asked Mar 5 at 11:22
Robinio TorRobinio Tor
33111
33111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
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
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%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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
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%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
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