Always catching in to Typed / Bookmarked in Referrer Reports | Adobe Higher Education
Skip to main content
saibul
Level 4
August 31, 2020
Répondu

Always catching in to Typed / Bookmarked in Referrer Reports

OS: RHEL 7.6 (Maipo)
Server: AEM-6.5.1 SP-6.5.1

Adobe Launch

---------------------------------------------

When we try to take below Referrer reports always the counts are showing under Typed / Bookmarked.

  • Reports/Traffic Sources/Referring Domains,
  • Reports/Traffic Sources/Referrer Types
  • Reports/Traffic Sources/Referrer

In some of the blogs they mentions if(search-engine) -> else if() -> else if() -> else { "Typed / Bookmarked" ). 

 

Agreed, but what I missed here to get the actual values. if I need to set s.referrer where I need to configure or set. 

 

Thanks in advance

Ce sujet a été fermé aux réponses.
Meilleure réponse par raj_mandalapu

By default, Adobe Analytics tracks referrer from document.referrer, but here it is not behaving like that, seems something is overriding, you need to check internal URL filters or check custom code editor.

You can override this using s.referrer plugin, for this, you need to write code in Adobe Launch custom code editor.

Example:

s.referrer=document.referrer;
If you are using Launch then you can use Adoeb analytics plugin code editor to place your custom code.

 

2 commentaires

khurshid
Adobe Employee
Adobe Employee
August 31, 2020

If you need to set s.referrer arbitrarily, use the Referrer Override field in the Analytics extension. Also, check if Internal URL Filters setting for the report suite is configured correctly.

raj_mandalapu
Level 7
September 1, 2020

By default, Adobe Analytics tracks referrer from document.referrer, but here it is not behaving like that, seems something is overriding, you need to check internal URL filters or check custom code editor.

You can override this using s.referrer plugin, for this, you need to write code in Adobe Launch custom code editor.

Example:

s.referrer=document.referrer;
If you are using Launch then you can use Adoeb analytics plugin code editor to place your custom code.