我正在以此创建草稿订单。
{
"draft_order": {
"line_items": [
{
"custom": false,
"title": "Custom Product",
"product_id" : 4008421883976,
"price" : "1000.00",
"properties": [
{
"name": "custom engraving",
"value": "Happy Birthday Mom!"
}
],
"quantity": 5
}
],
"customer": {
"id": 1000
},
"email": "test@test.com"
}
}
但是我想按草稿顺序显示产品图片和产品链接。
我该怎么做?
如果line_item是自定义项,则显示“自定义标题”,没有图像,没有选项。
我不能使用variant_id,因为根据产品选项的价格差异很大。
所以我需要使用自定义名称,但要按草稿顺序添加产品网址和图片。
我该怎么做?