用于Shopify产品页面的Amazon按钮

时间:2019-06-30 14:42:06

标签: button shopify amazon shopify-template

有人可以告诉我如何在商品页面上添加亚马逊按钮以自动搜索亚马逊上的shopify产品标题。到目前为止,我已经获得了这段代码,但不知道要在“产品标题”部分添加什么以在亚马逊上自动搜索产品标题。这是我在网上找到的代码

**这是我在网上找到的代码

<a href="https://www.amazon.com/s?k= "product title" target="_blank"
   rel="noopener noreferrer"
   style="border: none; text-decoration: none;">

   src="https://www.niftybuttons.com/amazon/amazon-button2.png" />

</a>

代码如上**

1 个答案:

答案 0 :(得分:1)

产品对象在产品页面上可用。可以用来获取产品标题。示例代码将类似于

<a href="https://www.amazon.com/s?k={{ product.title | url_escape}}" target="_blank">
See it on Amazon
</a>

Product Object Documentation