Hmm I really don’t think that the ‘failed to clear temp storage’ error is likely to be related to this plugin. You might need your web hosting company to help with that one.
Hopefully the plugin will work if you get that resolved anyway – it’s possible the error message is interfering with the plugin’s Javascript code.
Anyway, the kind of activity to look for in the network panel is a call to something on google-analytics.com
You should see one for the pageview anyway, and then more where the ecommerce data is being transmitted. You should be able to see some of the relevant data in the URL.
Great that you can see the ga object being defined. A bit further down, the relevant Javascript excerpt will look something like this:
if (typeof ga != “undefined”) {
ga(‘require’, ‘ecommerce’, ‘ecommerce.js’);
ga(‘ecommerce:addTransaction’, {
‘id’: ‘18329’, // Transaction ID. Required.
‘affiliation’: ‘WPg’, // Affiliation or store name.
‘revenue’: ’48’, // Grand Total.
‘shipping’: ‘0’, // Shipping.
‘tax’: ‘0’ // Tax.
});
ga(‘ecommerce:addItem’, {
‘id’: ‘18329’, // Transaction ID. Required.
‘name’: ‘Google Apps Login for WordPress Premium – 1-10 Google Apps users’, // Product name. Required.
‘sku’: ‘149’, // SKU/code.
//’category’: ‘Example’, – Category or variation.
‘price’: ’29’, // Unit price.
‘quantity’: ‘1’ // Quantity.
});
ga(‘ecommerce:send’);
}
Please note that this should only appear the first time the checkout confirmation page is displayed for a purchase. If you reload, it won’t appear again.
I hope this helps!
Thanks,
Dan