0

Shopifyでコレクションされている商品のカスタム再注文を行うにはどうすればよいですか。たとえば、「test」コレクションがあり、製品タグを使用して「test」コレクションの製品を並べ替えたい場合は、「test」コレクションの一部の製品に「firstshowup」などのタグを付けて、顧客が「test」をクリックしたときにコレクションの顧客は、最初に「firstshowup」タグが付いている製品を見てから残りを見るので、ここで試しているのは、ベストセラーによる注文のように、またはすべての方法で作成された日付を使用せずに、カスタムの再注文を使用して再注文することです。

4

1 に答える 1

1

コレクションは、position属性を持つCollectオブジェクトで構成されます。CustomCollectionを使用している場合、CustomCollectionを更新することでCollectの位置を変更できます:http://api.shopify.com/customcollection.html#update

例から、コレクションを更新するには、次を使用できます。

PUT /admin/custom_collections/#{id}.json

次のペイロードを使用します。

{
  "custom_collection": {
    "body_html": "<p>The best selling ipod ever</p>",
    "handle": "ipods",
    "id": 841564295,
    "published_at": "2008-02-01T19:00:00-05:00",
    "sort_order": "manual",
    "template_suffix": null,
    "title": "IPods",
    "updated_at": "2008-02-01T19:00:00-05:00",
    "image": {
      "created_at": "2012-12-11T12:01:29-05:00",
      "src": "http://cdn.shopify.com/s/files/1/0006/9093/3842/collections/ipod_nano_8gb.jpg?0"
    },
    "collects": [
      {
        "product_id": 921728736,
        "position": 1
      },
      {
        "id": 841564295,
        "position": 2
      }
    ]
  }
}
于 2012-12-18T18:25:02.870 に答える