How to access the store name and currency? 🏪
### Explanation
To access store information:
```liquid
{{ shop.name }} // Store name
{{ shop.currency }} // Store currency (USD, EUR, etc.)
```
Common shop properties:
- `shop.name` - Store name
- `shop.currency` - Store currency
- `shop.email` - Store email
- `shop.domain` - Store's primary domain
- `shop.description` - Store description
- `shop.privacy_policy_url` - Privacy policy URL
- `shop.refund_policy_url` - Refund policy URL
Key points:
- Use `shop` object (not `store`)
- Available globally
- Read-only values
- Set in store admin
Reference: [Shopify Shop Object](https://shopify.dev/docs/api/liquid/objects/shop)
Answer Options:
- {{ store.name }} and {{ store.currency }}
- {{ shop.name }} and {{ shop.currency }}
- {{ store.title }} and {{ store.money_format }}
- {{ shop.title }} and {{ shop.money_format }}