Were can i get Trancation fuctions for Google Tag Manager Implemetation

Hi,

I am implementing google tag manager for my site, i am using the Alidropship Plugin original. Need the fundtion names used in this plugin for using in my GTM. Below is the sample GTM Datalayer that needs to be triggered, i need to make it dynamic by calling actual function. Let me know any help.

<script>
window.dataLayer = window.dataLayer || [];
dataLayer.push({
'transactionId': '1234',
'transactionAffiliation': 'Acme Clothing',
'transactionTotal': 38.26,
'transactionTax': 1.29,
'transactionShipping': 5,
'transactionProducts': [{
'sku': 'DD44',
'name': 'T-Shirt',
'category': 'Apparel',
'price': 11.99,
'quantity': 1
},{
'sku': 'AA1243544',
'name': 'Hat',
'category': 'Apparel',
'price': 9.99,
'quantity': 2
}]
});
</script>
 
Top