Quote:
Originally Posted by Acquamarina
|
For 4.4.x you can try altering the "skin/common_files/modules/Google_Analytics/ga_code.tpl" template and replace this code:
Code:
pageTracker._trackPageview();
with this:
Code:
{if $main eq "search"}
searchterms='{$search_prefilled.substring|escape}';
searchterms=searchterms.toLowerCase().replace(/\s/g,'+');
pageTracker._trackPageview('/search?q='+searchterms);
{else}
pageTracker._trackPageview();
{/if}
The second step (from the reported instructions) is still required.