Magento Asked on January 6, 2022
I want to add custom link in More Information tab.
See attached screenshot:
I want to give a link instead of text
I was able to do this by adding the attribute then importing via csv with text similar to the following
'<a href='https://pirate.black/' target='_blank'>https://pirate.black//</a>
It will also work if directly entered in the new product attribute.
Answered by user10588486 on January 6, 2022
Create an Attribute in admin with text type say external_link
Add phtml at:
app/design/frontend/{Package}/{theme}/Magento_Catalog/layout/catalog_product_view.xml
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="product.info.addtocart">
<block class="MagentoCatalogBlockProductView" name="external.link" template="Magento_Catalog::externallink.phtml"/>
</referenceBlock>
</body>
</page>
Now create phtml and get attribute value:
app/design/frontend/{Package}/{theme}/Magento_Catalog/templates/externallink.phtml
<?php $product = $block->getProduct(); ?>
<?php if($link = $product->getExternalLink()){ ?>
<div class="link">
<a href="<?= $link; ?>"><?= $block->escapeHtml(__('Link text')) ?></a>
</div>
<?php } ?>
Hope above will help!
Answered by Pawan on January 6, 2022
Then you need to do the following things.
first create one product attribute where you mention this link of third party.
Now create one custom extension and create custom phtml file and call the file on product page on specific by using reference block.
Now in that phtml file, fetch that product attribute value and show to customer.
Answered by Dhiren Vasoya on January 6, 2022
2 Asked on December 2, 2021 by bossman
3 Asked on December 2, 2021
1 Asked on December 2, 2021 by climbah
1 Asked on December 2, 2021
10 Asked on November 30, 2021
3 Asked on November 30, 2021 by daniel_12
1 Asked on November 30, 2021 by 1990rk4
2 Asked on November 30, 2021
1 Asked on November 30, 2021 by tarek-fellah
1 Asked on November 30, 2021 by yorkshire-bear
1 Asked on November 30, 2021
1 Asked on November 30, 2021 by jack-brooks
2 Asked on November 27, 2021
3 Asked on November 27, 2021 by user34566
1 Asked on November 27, 2021 by ganesh
Get help from others!
Recent Answers
Recent Questions
© 2023 AnswerBun.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP