You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realize I am new to this, and I apologize if this isn't an actual bug but maybe I'm doing something wrong. I tried to find supporting documentation and scoured this Git, Google, Shopify developer help boards, and even made several posting there, but still cannot solve this issue. If there is a better resource or place to assist with this, I'll gladly check elsewhere. Any help or guidance pointing me in the right direction is greatly appreciated. Thank you!
The text was updated successfully, but these errors were encountered:
We are closing this issue because it has been inactive for a few months.
This probably means that it is not reproducible or it has been fixed in a newer version.
If it’s an enhancement and hasn’t been taken on since it was submitted, then it seems other issues have taken priority.
If you still encounter this issue with the latest stable version, please reopen using the issue template. You can also contribute directly by submitting a pull request– see the CONTRIBUTING.md file for guidelines
Issue summary
Write a short description of the issue here ↓
product.save() doesn't seem to be saving the product
Expected behavior
A newly created product, or existing product with modifications, should save when call the product.save() method
Actual behavior
When called on a new product, nothing happens.
When called on an existing product, an error is thrown
Steps to reproduce the problem
For new product
product = shopify.Product()
product.title = "Test Product"
product.save()
2. Check the inventory and there are no new products seen.
For existing product
product = shopify.Product.find(9468056895783)
2. receive the error message:product.price = "9.99"
product.save()
I realize I am new to this, and I apologize if this isn't an actual bug but maybe I'm doing something wrong. I tried to find supporting documentation and scoured this Git, Google, Shopify developer help boards, and even made several posting there, but still cannot solve this issue. If there is a better resource or place to assist with this, I'll gladly check elsewhere. Any help or guidance pointing me in the right direction is greatly appreciated. Thank you!
The text was updated successfully, but these errors were encountered: