Liquid Objects & Usage
-
Working with Liquid
WebinOne has implemented the full standard Shopify Liquid library. See the External Resources below for relevant links.
-
Liquid Filters
Liquid Filters allow you to modify the output of a Liquid object, whether that's adding something to it, removing something from it, executing a calculation, creating an array, or a wide variety of other powerful functions.
-
{{ this }} object
This Liquid object is globally accessible in every liquid template or layout and outputs specific data relating to the item being render.
-
{{ request }} object
This Liquid object is globally accessible in every liquid template or layout and outputs various data relating to your site. {{ request }} Liquid OutputAn live render of the data...
-
{{ liquidContext }} object
This Liquid object is globally accessible in every liquid template or layout and outputs a combination of the
this
andrequest
Liquid objects as well as any Liquid variables available to the layout it is placed in. -
{{ siteglobals }}
This liquid object will output any custom configure Site Information data (found in the Admin's main menu under 'Settings' > 'Site Information').
-
{{ formSubmissionData }} object
This liquid object will output the submission details of a Form.
-
{{ member }} object
This liquid object will output the Member's details of whom submitted a Form. You can use this on the default form submission page (/_form-submission-results/) or any custom redirect page you...
-
{{ workflow }} object
This liquid object will output the Workflow details of a submitted Form. You can use this on the default form submission page (/_form-submission-results/) or any custom redirect page you have...
-
{{ order }} object
This liquid object will output the order details of a submitted payment. {{ this.order }} Order Object Availability Currently, this object’s structure, and where it can be accessed, varies depending...