如何将shopify商店搜索添加到外部活动网站

时间:2016-12-26 00:19:03

标签: html search shopify

所以目前我正在创建一个外部广告系列网站,并希望将我的Shopify搜索输入连接到广告系列网站 - 这样当有人在广告系列网站上为搜索添加关键字时,它会指示他们Shopify网站列出了关键字产品。

有没有一种清晰简单的方法来实现它?

感谢, 曼尼

1 个答案:

答案 0 :(得分:0)

仅仅发送表单就足够了 yourshopifydomain.com/search?q=Gothick

<html>
  <body>

    <form action="http://yourshopifydomain.com/search">
      Search: <input type="text" name="q" value="Gothick"><br>
      <input type="submit" value="Submit">
    </form>

  </body>
</html>