Jump to content

Tracking front stats


Recommended Posts

J'ai trouvé un problème dans le fichier trackingfront.js ligne 44 :

function updateValues() {
    $.getJSON("stats.php", {ajaxProductFilter: 1, id_referrer: 1, token: "8d03a885ac0bd21f1a11c5b8f4e674ac", id_product: 0},
        function (j) {
            $.each(display_tab, function (index, value) {
                $("#" + value).html(j[0][value]);
            });
        }
    )
}

Des valeurs sont définies, ce devrait être : 

 


function updateValues() {
    $.getJSON("stats.php", {ajaxProductFilter: 1, id_referrer: referrer_id, token: token, id_product: 0},
        function (j) {
            $.each(display_tab, function (index, value) {
                $("#" + value).html(j[0][value]);
            });
        }
    )
}
Edited by Elwood (see edit history)
  • Like 1
Link to comment
Share on other sites

  • 3 weeks later...

Bonjour à tous,

 

Des corrections ont été apportées à ce module, vous pouvez le mettre à jour.

 

Pour information, pour avoir accès à toutes vos stats vous devez activer les options du module "Récupération des données statistiques".

Attention ceci va charger votre base car les données vont s'enregistrer continuellement donc prévoyez de la mémoire!

 

 

Bien cordialement,

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...