Shopify - 检测元场

时间:2015-09-19 10:45:31

标签: html e-commerce shopify

Shopify非常新,并想知道是否有人可以帮助我。我列出的一些产品在点击时应提供指向联盟会员的链接,而不是添加到购物车按钮。要创建联属会员选项,我使用Metafield Solid添加会员链接数据:

var i = 10000000000;
do {
    i--;
}
while (i !== 0);
//Result: 38 second.

var i = 10000000000;
do {}
while (i-- !== 0);
//Result: 27 second.
//(same result with while (i--)

var i = 10000000000;
do {}
while (i-- | 0);
//Result: 13.5 second.

在主题(Minimal)中,我做了以下更改:

   Key:url
   Namespace: affiliate

当我预览页面时,它仍显示“添加到购物车”按钮,但当我查看源时,包含product.metafields.affiliates.url的评论会清楚地显示正确的联盟网址。我有什么明显的遗失吗?

0 个答案:

没有答案