Jump to content

Google Analytics Tracking im Backoffice


Luca01

Recommended Posts

Hallo Foris,

ich weiß ja nicht, ob Ihr es wusstet.Gestern Nacht habe ich mich mit Prestashop 1.6.0.8 beschäftigt. Also Firefox an und durch die Seiten im Backoffice geklickt. Plötzlich meldete Ghostery ein Google Analytics Tracking. Im Backoffice wir auf der Template-Seite in einem iframe über den Link "http://addons.prestashop.com/iframe/analytics-themes-1.6.html?parentUrl=http://meineDomain/adminordner/" ein Trackingscript ausgeführt das Daten nach Amerika sendet. :angry:

 

Ich weiß ja nicht wie ihr das seht, aber ich finde ein Tracking im Backoffice einer Shopsoftware ist ein Unding.  :angry:  Zumal nach deutschem Datenschutzrecht darauf hingewiesen werden muß.

 

Ihr findet den iframe auf der Template-Seite im Container

<div id="prestastore-content" class="panel clearfix">

.
.
.
<iframe frameborder="no" src="http://addons.prestashop.com/iframe/analytics-themes-1.6.html?parentUrl=http://meiedomain/admin/" class="addons-style-iframe">
.
.
.

Google Analytics
.
.
.

</iframe>

Wie kann man dieses interessante feature deaktivieren?

 

Viele Grüße

 

Den Code kann man rauskegeln wenn man in der Datei /admin/default/template/controllers/themes/helpers/options/options.tpl

{block name="after"}
	<div class="panel clearfix" id="prestastore-content"></div>
	<script type="text/javascript">
		$.ajax({
			type: 'POST',
			headers: { "cache-control": "no-cache" },
			url: 'ajax-tab.php?rand=' + new Date().getTime(),
			async: true,
			cache: false,
			dataType : "html",
			data: {
				tab: 'AdminThemes',
				token: '{$token}',
				ajax: '1',
				action:'getAddonsThemes',
				page:'themes'
			},
			success: function(htmlData) {
				$("#prestastore-content").html("<h3><i class='icon-picture-o'></i> {l s='Live from PrestaShop Addons!'}</h3>"+htmlData);
			}
		});

		// These variable will move the form to another location
		var formToMove = "appearance";
		var formDestination = "js_theme_form_container";
	</script>
{/block}

das Javascript entfernt:

{block name="after"}
	<div class="panel clearfix" id="prestastore-content"></div>

{/block}
Edited by Luca01 (see edit history)
  • Like 2
Link to comment
Share on other sites

Hallo Whiley,

Wenn ich das richtig verstehe wird das tracking auf der BO-Template-Seite aktiviert, oder gibt es noch weitere Seiten?

Ja, so ist es. Ghostery blockt das Script auf der Template-Seite. Was dort an Infos übertragen wird kann ich nicht sagen. Bisher habe ich nicht weiter gesucht. Die 1.6.0.8 Version läuft hier local. B) Es ist hier erst wichtig, wenn wir in den Servertest gehen.

Viele Grüße

ps.:Das Trackingscript ist auch der einzige Content im iframe-Container. Was das für einen Sinn hat außer das Script zu verstecken ist mir schleierhaft.

Edited by Luca01 (see edit history)
Link to comment
Share on other sites

In welchem Modul und wie kann man das abstellen? 

In GC-German gab es so einen Silent Mode, mit dem Nachteil das man auch keine Updates bekam. Aber so was in der Art als Modul wäre nicht schlecht. Zum Updaten etc. kurz Mal einschalten und sonst alle Telefonverbindungen nach draußen kappen....

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...