@bmuniz:
1. Install CookieList
2. In system settings, change session_cookie_path from empty to /
3. Edit the plugin CookieList:
setcookie($cookie."[cl_check]", 1, 0, '', false, false);
to
setcookie($cookie."[cl_check]", 1, 0, '/', false, false);
and from:
setcookie($cookieName, $value, $duration, '', false, false);
to
setcookie($cookieName, $value, $duration, '/', false, false);
In my templates, where the "Add to basket" link are:
[[!addToCookieList?
&addText=`Add to basket`
&removeText=`Remove from basket`
&value=`[[*id]]`
]]
On the page where I have the list of items in the basket:
[[!getResources?
&tpl=`chk-tpl-basket`
&resources=`[[!getCookieList]]`
&includeTVs=`1`
&tvPrefix=``
]]
And in chunk "chk-tpl-basket":
<div class="item">
<h3>[[+pagetitle]]</h3>
<p>[[+introtext]]</p>
etc. etc...
</div>
5. Clear cache - maybe with your FTP client to remove all files from core/cache