Bigcommerce商品详情页如何添加静态图片

How to add static image in Bigcommerce product detailed page

我想在 bigcommerce 的产品详细信息页面上放一张图片。我想要它 在某些类别上可见,所以我需要一个 PHP 条件来获取类别 ID 并显示某些 category.I 上的静态图像是 Bigcommerce 的新手,我 khow php 但不知道如何限制某个类别的图像。请如果 任何人都知道或可以指导我。

如果您还没有阅读 BigCommerce API 文档以设置所有内容(如令牌),对于类别和图像,look here. And here are the product docs, so you can see how to update images for specific products

如您所见,您可以对 /api/v2/categories 进行 GET 调用以列出类别,如果要使用图像更新类别,可以对 /api/v2/categories/{id} 进行 PUT 调用并传入 image_file,这将是图像的 URL。如果您不确定如何 API 调用 BigCommerce,you should probably start here