SuzieH,
do you have more info on this subject or point me to any code sample I can look at,
how to get data if the user signed-in and definetely we need the user's email as well?...
For example, how to get this data so Omniture/ Adobe DTM tracks it?...
--------------------
I've seen this piece of the code in another Lithium discussion:
<#assign channel = "" />
<#list page.content.nav.breadcrumb.crumbs?reverse as crumb>
<#assign channel = channel + "${crumb.text?js_string}" />
<#if crumb_has_next>
<#assign channel = channel + "|" />
<#if>
</#list>
s.pageName="${page.content.head.title?js_string}";
s.pageType="${page.name?js_string}";
s.channel = "${chanel?js_string}";
s.prop7="<#if user.anonymous>FALSE<#else>TRUE</#if>";
s.prop8="${user.id}";
s.prop11="logged in";
------------------