Referrer Tracking as Goals

…this is what I really wish: tracking referrers as goals!

ok i also really wish about it.

You can already trigger goals manually via javascript.


// where 10 is the idGoal, and http://something is the referrer you're trying to match
if (document.referer.indexOf('http://something') >= 0)
{
    piwikTracker.trackGoal(10);
}