php-shopify
php-shopify copied to clipboard
Add ProductImage
Hello
Add ProductImage on $resources to add images on product
$product_image_info = array( 'src' => $image->link ); $image_shopify = $shopify->ProductImage->post($product_image_info,$shopify->Product->generateUrl(array(),$product_shopify['id']."/images"));
@sebastienhouzet
ProductImage is a child resource of Product. So the ideal way of doing this should be like
$product_image_info = array(
'src' => $image->link
);
$image_shopify = $shopify->Product($product_shopify['id'])->Image->post($product_image_info));
Please let me know if you are having any issues with that way.