Liquid Objects & Usage

  • Working with Liquid
    WebinOne has implemented the full standard Shopify Liquid library. See the External Resources below for relevant links. Learning Liquid - Free Online Course If you are new to Liquid, see...
  • 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. {% capture data %}{% raw %}{{ this }}{%...
  • {{ request }} object
    This Liquid object is globally accessible in every liquid template or layout and outputs various data relating to your site. {% capture data %}{% raw %}{{ request }}{% endraw %}{%...
  • {{ liquidContext }} object
    This Liquid object is globally accessible in every liquid template or layout and outputs a combination of the {% raw %}{{this}}{% endraw %} and {% raw %}{{request}}{% endraw %} Liquid...
  • {{ 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. {% capture data %} {% raw %} {{ this.order }} {% endraw %} {% endcapture %} {% component...