phpclassic / php-shopify

PHP SDK for Shopify API
Apache License 2.0
568 stars 211 forks source link

Want to create a Metafield? #261

Open teratai3 opened 2 years ago

teratai3 commented 2 years ago

I want to create a Metafield for my product information. What should I do?

↓It doesn't show up even if I post it.

$postArray = array( "namespace" => "newmetafields", "key" => "product.metafields.custom.hoge", "value" => 25, "type" => "integer", ); $meta = $shopify->Metafield->post($postArray);