Liquid Template Variables - cookies

From Spiffy Stores Knowledge Base

Revision as of 12:16, 25 June 2018 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Liquid template variable cookies has the following attributes:

cookies.name

You can access any cookie by name.

For example, if you have created a cookie called theme, then its value can be accessed by

cookies.theme

Note that the Liquid variable, cookies, only provides read-only access to the cookies.

You will need to use another method, such as JavaScript to create and update cookies.

Most themes include the Moo Tools Javascript framework, and this includes standard methods for creating cookies.

The following code creates a theme cookie with the value blue. This code can be included in the body of your page as required.

<script type="text/javascript">Cookie.write('theme', 'blue', {duration: 14, path: '/'});</script>

Documentation of the Moo Tools API is at http://docs.mootools.net/Utilities/Cookie

Further Reference