Scalingo / special_pages

0 stars 0 forks source link

Change URL to Scalingo with UTM parameters #1

Open JulesLagadic opened 6 years ago

JulesLagadic commented 6 years ago

On special pages such as http://beatsloop.com/, link to Scalingo is a simple link to the homepage which make difficult to identify this links in Google Analytics. They should have UTM parameters as it's more campaigns links.

Change the href of the link to :

https://scalingo.com/?utm_source={{domain}}&utm_medium=special_pages&utm_content={{status}}

{{domain}} should be set to the real domain (eg. : 'beatsloop.com') and the utm_content should be set with the status avec the application (eg. : 'stopped')

UPDATE : since it's not possible to put the domain in the URL, change the link to

https://scalingo.com/?utm_source=special_pages&utm_content={{status}}

(Because utm_source is a required parameter)

yannski commented 6 years ago

Domain is not possible. Those pages are completely static.

Le mer. 25 avr. 2018 à 09:55, Jules Lagadic notifications@github.com a écrit :

On special pages such as http://beatsloop.com/, link to Scalingo is a simple link to the homepage which make difficult to identify this links in Google Analytics. They should have UTM parameters as it's more campaigns links.

Change the href of the link to :

https://scalingo.com/?utm_source={{domain}}&utm_medium=special_pages&utm_content={{status}}

{{domain}} should be set to the real domain (eg. : 'beatsloop.com') and the utm_content should be set with the status avec the application (eg. : 'stopped')

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Scalingo/special_pages/issues/1, or mute the thread https://github.com/notifications/unsubscribe-auth/AAAsF91ysn36YqEoHEJNSOLr8mjJuu7xks5tsCvzgaJpZM4Ti8db .

JulesLagadic commented 6 years ago

Even with a Javascript function like window.location.hostname ?