Hiding "Powered By" From Console

Learn how to hide "powered By" from console.

By default, all websites will show a small "Powered by Aimtell" within the developer console. The vast majority of your website visitors will never see this unless they actively search through your websites console/code.

While we appreciate those who keep this, if you would like to remove it you can do so by simply adding the following flag to your website's tracking code:

_at.showCredit = false;

 

So your website's tracking code would look something like this:

<!-- start aimtell tracking code --> 
<script type='text/javascript'>
var _at = {};
_at.domain = 'website.com';
_at.owner = '76c1231hffb19e';
_at.idSite = '2634';
_at.attributes = {};
_at.webpushid = 'web.20.aimtell.com';
_at.showCredit = false;
(function() { var u='//s3.amazonaws.com/cdn.aimtell.com/trackpush/';var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'trackpush-dev.min.js'; s.parentNode.insertBefore(g,s); })();
</script>
<!-- end aimtell tracking code -->