craftcms / shopify

Synchronize and extend product data from your Shopify storefront.
MIT License
44 stars 25 forks source link

Typo in Docs #51

Closed mattias78 closed 1 year ago

mattias78 commented 1 year ago

Description

Under the Variants and Pricing section in the docs there is a typo..

{% set defaultVariant = product.getDefaultVariant() %}

{{ variant.price|currency }}

throws a twig error (as variant isn't a defined variable)

shouldn't it be :

{{ defaultVariant.price|currency }}