Plugin Contributor
eltodd
(@eltodd)
Do you happen to have this plugin installed on your site as well?
https://wordpress.org/plugins/spacer/
It seems that is using the same variable ($class) as we are, but it is turning it into an object instead of an array. Thus giving that error.
Thread Starter
Julz
(@juliziz12)
Thanks. Yes, I found the conflict with that plugin. I take it down already.
Plugin Contributor
eltodd
(@eltodd)
So you can activate it now? Or are you still getting the error even after removing that plugin?
Thread Starter
Julz
(@juliziz12)
Yes, all good without the Spacer plugin.
Plugin Contributor
eltodd
(@eltodd)
Great! I’m going to go ahead and mark this as resolved.
Hello,
I suggest changing line 502 from:
$class['Tracking_Scripts'] = new Tracking_Scripts();
for:
$classTrackingScripts = new Tracking_Scripts();
So you will hardly have conflicts with other plugins. Apparently this will not affect the operation of your plugin.
Att,
Fernando Santana