如何在Bigcommerce产品详细页面中添加静态图像

时间:2016-06-08 20:48:09

标签: php templates woocommerce customization bigcommerce

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

1 个答案:

答案 0 :(得分:2)

对于类别和图片look here,您还必须阅读BigCommerce API文档,以便设置所有内容(如令牌)(如令牌)。并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。如果您不确定如何向BigCommerce发出API调用,you should probably start here