Get UTM_source in Sleeknote

I.e. like Sleeknopte provides “Map additional data fields” where I can send the IP og Signup page. but no additional field for UTM_source.

So: Any other way to get the utm_spurce data and map that in the integration?=

10:02

Peter

No worries. That is done in the integration step on the specific campaign and then via the want to map custom fields option. But just to make sure, is what you want to grab the UTM source that a given visitor has on the link when coming to the site and then send that to your AC list or are we talking adding a value to the lead so you know which campaign they came from?

10:05

Yes, I want to want to “grab the UTM source that a given visitor has on the link when coming to the site ” – so I can track (in AC) if the lead initially was generated from a LInkedIN campagin etc..

10:06

Peter

Alright. That is a bit more technical as you need a piece of custom code on the site that will grab it and send it to our SiteData feature from where we can then map it.

10:07

Oh, I see.. Do you have any plug’n’play code ready to use somewhere? 😀 😀

10:07

Peter

I should have something you can use yes. I did a similar solution for another customer recently. Let me just find it and modify it for you.

10:08

Sounds great!

10:09

Peter

Here we go

<script>
try {
window.sleeknoteSiteData || (window.sleeknoteSiteData = []);
var urlSearch = new URLSearchParams(window.location.search);
if(urlSearch.has("utm_source"))
    window.sleeknoteSiteData.push({'utm_source': urlSearch.get("utm_source")});
if(urlSearch.has("utm_medium"))
    window.sleeknoteSiteData.push({'utm_medium': urlSearch.get("utm_medium")});
if(urlSearch.has("utm_campaign"))
    window.sleeknoteSiteData.push({'utm_campaign': urlSearch.get("utm_campaign")});
if(urlSearch.has("utm_content"))
    window.sleeknoteSiteData.push({'utm_content': urlSearch.get("utm_content")});
}
catch(err){
}
</script>

10:12

Peter

When that is running on the site we can then map the values to AC if present

10:15

Nice! Thanks for your help – we’ll try this out 🙂  Have a nice day. (And happy new year soon too.)

Kiosk pc – en pc-info-stander med printer

Jeg hjælper en kammerat med et projekt, hvor han pÃ¥ job skal bruge en infostander / kiosk-PC. Det er ret standard, men den skal kunne printe “selv”, – dvs. uden at der kommer printerdialogboks frem.

Her et linkdump til nyttig læsning i forbindelse med projektet:

  • Kiosk mode i Win: https://technet.microsoft.com/en-us/itpro/windows/manage/set-up-a-kiosk-for-windows-10-for-desktop-editions
  • Chrome som shell i Win: https://community.spiceworks.com/topic/499178-running-google-chrome-as-a-shell-instead-of-explorer-exe-how-to-make-it-re-open
  • Print:
    • http://stackoverflow.com/questions/2578052/printing-contents-of-another-page
    • http://stackoverflow.com/questions/9213660/html-javascript-one-click-print-no-dialogs
    • http://stackoverflow.com/questions/21073959/print-without-confirmation-on-google-chrome
    • https://mycartpos.zendesk.com/hc/en-us/articles/200868343-Enable-kiosk-printing-print-automatically-for-Google-Chrome-on-Windows
  • Firefox kiosk add-on: https://addons.mozilla.org/da/firefox/addon/mkiosk/
  • Firefox kiosk add-on 2: https://addons.mozilla.org/da/firefox/addon/r-kiosk/
  • Linux og Firefox kiosk: https://addons.mozilla.org/en-US/firefox/addon/webconverger/
  • Kiosk software:
    • http://www.sitekiosk.com/web/us/products/windows-kiosk-software-sitekiosk
    • http://www.kioware.com/comparison.aspx
    • http://netkiosk.co.uk/
  • On screen keyboard:
    • http://chessware.ch/virtual-keyboard/
  • Generel diskussion:
    • https://community.spiceworks.com/topic/486900-kiosk-software-for-public-facing-machines

(Men vil du bare samle emails pÃ¥ en tablet, sÃ¥ overvej: https://mailchimp.com/features/mailchimp-subscribe/ – eller en af de mange tablet kiosk apps, sÃ¥som Kioware.)

Javascript include – tricks

You can include a javascript like this:

function include(filename)
 {
var head = document.getElementsByTagName('head')[0];
 script = document.createElement('script');
 script.src = filename; 
script.type = 'text/javascript';
 head.appendChild(script)

}
Read more here: http://forums.digitalpoint.com/showthread.php?t=146094

Or even better:
You can easily read another JS-file inside the javascript using jquery:

$.getScript("my_lovely_script.js", function(){
    alert("Script loaded and executed.");    
  // here you can use anything you defined in the loaded script 
});

Read here: http://stackoverflow.com/questions/950087/include-javascript-file-inside-javascript-file

Make Google Maps..

Use:
http://gmaps-samples.googlecode.com/svn/trunk/spreadsheetsmapwizard/makecustommap.htm
or:
http://mapmaker.donkeymagic.co.uk/

 

UPDATE:
These Google Maps tools actually seems better to me:
www.imapbuilder.net – paid, but with some export options free
http://mapalist.com – free

Guides for using Excel with Google Maps:
http://www.ehow.com/how_5879146_create-google-map-excel.html
http://theclosetentrepreneur.com/export-excel-data-to-google-maps