MonsterInsights - Google Analytics Plugin for WP

MonsterInsights - Google Analytics Plugin for WP v9.2.4 + Addons

No permission to download

Laurenslag

New member
Sep 24, 2019
23
1
3
awesome thanks!

Can someone upload the addons? The links in this post for the addons don't work anymore.

Thanks again :)
 
Last edited:

Weev

Active member
Null Master
Trusted Uploader
Sep 10, 2019
161
183
43
Cloud
nulled.agency
Addons are nullable, you just have to edit a bit of js in this file : /wp-content/plugins/google-analytics-premium/pro/assets/vue/js/settings.js
Look for the property isAddonActive and mod accordingly :)

After having installed and activated the corresponding addon of course. Once you do this, you will have access to the settings for the addon. If you pay attention they are identified by slugs such as eu-compliance, ecommerce... so you just have to override the validation function (which looks in some array to see if the addon is present) and return true in case parameter matches the slug of the addon you want to enable.
 
  • Like
Reactions: baaloulseif

ntn

Active member
Trusted Uploader
Aug 8, 2019
197
170
43
can you tell us the whole procedure step by step
 

cristiano_s

Active member
Jan 23, 2020
136
172
43
Addons are nullable, you just have to edit a bit of js in this file : /wp-content/plugins/google-analytics-premium/pro/assets/vue/js/settings.js
Look for the property isAddonActive and mod accordingly :)

After having installed and activated the corresponding addon of course. Once you do this, you will have access to the settings for the addon. If you pay attention they are identified by slugs such as eu-compliance, ecommerce... so you just have to override the validation function (which looks in some array to see if the addon is present) and return true in case parameter matches the slug of the addon you want to enable.
update nulled version please
 

Weev

Active member
Null Master
Trusted Uploader
Sep 10, 2019
161
183
43
Cloud
nulled.agency
update nulled version please

You simply need to do it according to which addons you want to use. As I said, look in the js file I mentioned for the property isAddonActive. You will find something like (on the top of my head) j.isAddonActive("ecommerce"), just replace what the function returns in this case. Go to the definition of isAddonActive (look for isAddonActive: function(e)) and add something like if (e === "ecommerce") {return true}

It's really straightforward.
 

ntn

Active member
Trusted Uploader
Aug 8, 2019
197
170
43
You simply need to do it according to which addons you want to use. As I said, look in the js file I mentioned for the property isAddonActive. You will find something like (on the top of my head) j.isAddonActive("ecommerce"), just replace what the function returns in this case. Go to the definition of isAddonActive (look for isAddonActive: function(e)) and add something like if (e === "ecommerce") {return true}

It's really straightforward.

tried this and it's not working

isAddonActive: function(t) {
if (t === "ecommerce") {
return true
}
return !!this.addons[t] && this.addons[t].active
},
 

Weev

Active member
Null Master
Trusted Uploader
Sep 10, 2019
161
183
43
Cloud
nulled.agency
tried this and it's not working

isAddonActive: function(t) {
if (t === "ecommerce") {
return true
}
return !!this.addons[t] && this.addons[t].active
},

There are multiple definitions of this function, are you sure you chose the right one ?
 

Weev

Active member
Null Master
Trusted Uploader
Sep 10, 2019
161
183
43
Cloud
nulled.agency
Line 1115 for me once unminified, this is my methods block
JavaScript:
                methods: {
                    isAddonActive: function(t) {
                        if (t == "ecommerce" || t == "eu-compliance") {
                            return true
                        }
                        return !!this.addons[t] && this.addons[t].active
                    },
                    getUserIdDescription: function() {
                        return this.isAddonActive("eu-compliance") ? this.text_user_id_description_eu_enabled : this.text_user_id_description
                    },
                    getUserIdFaux: function() {
                        return this.isAddonActive("eu-compliance")
                    }
                }

You can find the whole file here for your convenience...
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu