Liquid Template Variables - customer

From Spiffy Stores Knowledge Base

The Customer object is available in order notification objects and in the Checkout Additional Content & Scripts section, as well as in the customer templates.

The Liquid template variable customer has the following attributes:

customer.id

Returns the unique internal number of the customer.

This is normally only for internal usage.

customer.email

Returns the email address of the customer.

customer.title

Returns the customer's title, such as 'Mr', 'Mrs', 'Ms', 'Dr' or 'Professor'

customer.first_name

Returns the customer's first name.

customer.last_name

Returns the customer's last name.

customer.name

Returns the customer's name, without a title.

customer.full_name

Returns the customer's name, including the title.

customer.title_option_tags

Returns a set of HTML <option> tags containing the possible set of titles that can be used. These option tags can be wrapped within a <select> tag to create an option drop-down selection for the customer's title.

customer.default_address

Return the customer's default address.

customer.addresses

Return an array of all the customer's addresses.

customer.addresses_count

Return the number of addresses that the customer has.

customer.customer_credits

Return an array of all the customer's credits.

customer.customer_credits_count

Return the number of customer credits that the customer has.

customer.orders

Return an array of all the customer's orders.

customer.orders_count

Return the number of orders that the customer has placed.

customer.recent_order

Return the most recent order placed by the customer.

customer.last_order

Return the most recent paid order placed by the customer.

customer.tags

Return an array of all the tags assigned to this customer.

customer.total_spent

Return the total amount spent by this customer.

customer.new_address

Return a new empty address for the customer.

customer.errors

Return any error messages that were detected for this customer.

customer.credit

Return the amount of credit that the customer has in their account.

customer.reset_password_token

Return the current reset password token that can be used by the customer to access their account when the password has been forgotten.

accepts_marketing

Returns true if the customer has indicated that they want to receive marketing emails.

customer.wholesale

Returns true if the customer has wholesale status, and is eligible to purchase products using the wholesale price for the product.

customer.metafields

Return the metafields for the customer.

Metafields can only be managed using the Spiffy Stores API.

Further Reference