default_address - aareano/ifshop-wiki GitHub Wiki
This drop is corresponds to Shopify's.
missing properties
none
additional properties
none
- default_address.address1
- default_address.address2
- default_address.city
- default_address.company
- default_address.country
- default_address.country_code
- default_address.first_name
- default_address.id
- default_address.last_name
- default_address.name
- default_address.phone
- default_address.province
- default_address.province_code
- default_address.street
- default_address.zip
default_address.name
Returns the values of the First Name and Last Name fields of the address.
Input
Hello, {{ default_address.name }}
Output
Hello, Bob Biller
default_address.first_name
Returns the value of the First Name field of the address.
default_address.id
Returns the id of customer address.
default_address.last_name
Returns the value of the Last Name field of the address.
default_address.address1
Returns the value of the Address1 field of the address.
default_address.address2
Returns the value of the Address2 field of the address.
default_address.street
Returns the combined values of the Address1 and Address2 fields of the address.
Input
{{ default_address.street }}
Output
126 York St, Shopify Office
default_address.company
Returns the value of the Company field of the address.
default_address.city
Returns the value of the City field of the address.
default_address.province
Returns the value of the Province/State field of the address.
Input {{ default_address.province }} Output Ontario
default_address.province_code
Returns the abbreviated value of the Province/State field of the address.
Input
{{ default_address.province_code }}
Output
ON
default_address.zip
Returns the value of the Postal/Zip field of the address.
default_address.country
Returns the value of the Country field of the address.
Input
{{ default_address.country }}
Output
Canada
default_address.country_code
Returns the value of the Country field of the address in ISO 3166-2 standard format.
Input
{{ default_address.country_code }}
Output
CA
default_address.phone
Returns the value of the Phone field of the address.