We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In README.md, shipping price example is misleading as it looks like an amount in cents:
$shipping->setPrice('1300 USD');
It expects price in ISO 4217 format + max value is 1000 as seen here https://support.google.com/merchants/answer/6324484 so example probably should be:
$shipping->setPrice('13.50 USD');
same with product price https://support.google.com/merchants/answer/6324371, it could include a comment to clarify:
$item->setPrice("{$product->price} USD"); //ex: "89.90 USD"
What do you think ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In README.md, shipping price example is misleading as it looks like an amount in cents:
$shipping->setPrice('1300 USD');
It expects price in ISO 4217 format + max value is 1000 as seen here https://support.google.com/merchants/answer/6324484 so example probably should be:
$shipping->setPrice('13.50 USD');
same with product price https://support.google.com/merchants/answer/6324371, it could include a comment to clarify:
$item->setPrice("{$product->price} USD"); //ex: "89.90 USD"
What do you think ?
The text was updated successfully, but these errors were encountered: