├── .gitignore ├── LICENSE ├── README.md ├── tags ├── AdService │ └── AdServiceTag │ │ ├── AdService.tpl │ │ └── README.md ├── Adcrowd │ └── AdcrowdSmartpixel │ │ ├── Adcrowd.tpl │ │ └── README.md ├── Adform │ └── AdformTrackingPoint │ │ ├── Adform tracking point.tpl │ │ └── README.md ├── Adtraction │ └── Adtraction │ │ ├── README.md │ │ └── adtraction.tpl ├── Algolia │ └── Search Insights │ │ ├── README.md │ │ └── gtm-algolia-search-insights-custom-template.tpl ├── AppNexus │ └── AppNexusPixel │ │ ├── AppNexus.tpl │ │ └── README.md ├── Barilliance │ └── Barilliance │ │ ├── Barilliance.tpl │ │ └── README.md ├── BrainSINS │ └── BrainSINS │ │ ├── BrainSINS.tpl │ │ └── README.md ├── Cliengo │ └── Cliengo Chatbot │ │ ├── Cliengo.tpl │ │ └── README.md ├── Conductrics │ └── ConductricsScriptLoader │ │ ├── Conductrics.tpl │ │ └── README.md ├── Coveo │ ├── CoveoAnalyticsLogEvent │ │ ├── Coveo Analytics Log Event.tpl │ │ └── README.md │ └── CoveoAnalyticsScriptLoader │ │ ├── Coveo Analytics Load Script.tpl │ │ └── README.md ├── Facebook │ └── FacebookPixel │ │ ├── Facebook Pixel.tpl │ │ └── README.md ├── Generic │ └── TaxonomiesTracker │ │ ├── README.md │ │ └── Taxonomy Tracker.tpl ├── LinkedIn │ └── LinkedInEventPixel │ │ ├── LinkedIn Event Pixel.tpl │ │ └── README.md ├── Pardot │ └── PardotTrackingScript │ │ ├── Pardot.tpl │ │ └── README.md ├── Qualaroo │ └── Qualaroo │ │ ├── README.md │ │ └── qualaroo.tpl ├── Reddit │ └── RedditPixel │ │ ├── README.md │ │ └── RedditPixel.tpl ├── Sleeknote │ └── Sleeknote │ │ ├── README.md │ │ └── Sleeknote.tpl ├── Snapchat │ └── SnapPixel │ │ ├── README.md │ │ └── Snap Pixel.tpl ├── Taboola │ └── TaboolaPixel │ │ ├── README.md │ │ └── taboola-pixel.tpl ├── Uptrends │ └── Uptrends-RUM │ │ ├── README.md │ │ └── uptrends_rum.tpl ├── Userpilot │ └── UserpilotTag │ │ ├── README.md │ │ └── Userpilot.tpl ├── Utilities │ ├── DataLayerBuilder │ │ ├── README.md │ │ └── dataLayer Builder w-Standard eCommerce.tpl │ ├── EnhancedEcommerceDataLayerBuilder │ │ ├── README.md │ │ └── dataLayer Builder + Enhanced Ecommerce.tpl │ ├── GoogleAnalyticsBlockChecker │ │ ├── README.md │ │ └── gtm-google-analytics-block-checker-custom-template.tpl │ ├── GoogleTagManagerMonitor │ │ ├── Google Tag Manager Monitor.tpl │ │ └── README.md │ ├── GoogleTagManagerZone │ │ ├── Google Tag Manager Zone.tpl │ │ └── readme.md │ ├── QualityTrafficIndicator │ │ ├── README.md │ │ └── quality-traffic-indicator.tpl │ └── UserDistributor │ │ ├── README.md │ │ └── UserDistributor.tpl ├── Vk │ └── DynamicRetargetingPixel │ │ ├── README.md │ │ ├── gtm_custom_template_vk_pixel_v1.0_code.js │ │ └── vk_pixel_v1.0_eng.tpl └── Yandex │ └── YandexMetrica │ ├── README.md │ └── Yandex Metrica.tpl └── variables ├── Currency Conversion.tpl ├── Dollar to Number.tpl ├── Enhanced Ecommerce Object Builder.tpl ├── Four Column Lookup.tpl ├── Four Column Regex.tpl ├── Page Title DEBUG Mode.tpl ├── README.md ├── String from array of objects.tpl ├── String to Array or Array to String.tpl ├── URL 2.0.tpl └── User Properties for App + Web.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/README.md -------------------------------------------------------------------------------- /tags/AdService/AdServiceTag/AdService.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/AdService/AdServiceTag/AdService.tpl -------------------------------------------------------------------------------- /tags/AdService/AdServiceTag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/AdService/AdServiceTag/README.md -------------------------------------------------------------------------------- /tags/Adcrowd/AdcrowdSmartpixel/Adcrowd.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adcrowd/AdcrowdSmartpixel/Adcrowd.tpl -------------------------------------------------------------------------------- /tags/Adcrowd/AdcrowdSmartpixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adcrowd/AdcrowdSmartpixel/README.md -------------------------------------------------------------------------------- /tags/Adform/AdformTrackingPoint/Adform tracking point.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adform/AdformTrackingPoint/Adform tracking point.tpl -------------------------------------------------------------------------------- /tags/Adform/AdformTrackingPoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adform/AdformTrackingPoint/README.md -------------------------------------------------------------------------------- /tags/Adtraction/Adtraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adtraction/Adtraction/README.md -------------------------------------------------------------------------------- /tags/Adtraction/Adtraction/adtraction.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Adtraction/Adtraction/adtraction.tpl -------------------------------------------------------------------------------- /tags/Algolia/Search Insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Algolia/Search Insights/README.md -------------------------------------------------------------------------------- /tags/Algolia/Search Insights/gtm-algolia-search-insights-custom-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Algolia/Search Insights/gtm-algolia-search-insights-custom-template.tpl -------------------------------------------------------------------------------- /tags/AppNexus/AppNexusPixel/AppNexus.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/AppNexus/AppNexusPixel/AppNexus.tpl -------------------------------------------------------------------------------- /tags/AppNexus/AppNexusPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/AppNexus/AppNexusPixel/README.md -------------------------------------------------------------------------------- /tags/Barilliance/Barilliance/Barilliance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Barilliance/Barilliance/Barilliance.tpl -------------------------------------------------------------------------------- /tags/Barilliance/Barilliance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Barilliance/Barilliance/README.md -------------------------------------------------------------------------------- /tags/BrainSINS/BrainSINS/BrainSINS.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/BrainSINS/BrainSINS/BrainSINS.tpl -------------------------------------------------------------------------------- /tags/BrainSINS/BrainSINS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/BrainSINS/BrainSINS/README.md -------------------------------------------------------------------------------- /tags/Cliengo/Cliengo Chatbot/Cliengo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Cliengo/Cliengo Chatbot/Cliengo.tpl -------------------------------------------------------------------------------- /tags/Cliengo/Cliengo Chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Cliengo/Cliengo Chatbot/README.md -------------------------------------------------------------------------------- /tags/Conductrics/ConductricsScriptLoader/Conductrics.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Conductrics/ConductricsScriptLoader/Conductrics.tpl -------------------------------------------------------------------------------- /tags/Conductrics/ConductricsScriptLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Conductrics/ConductricsScriptLoader/README.md -------------------------------------------------------------------------------- /tags/Coveo/CoveoAnalyticsLogEvent/Coveo Analytics Log Event.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Coveo/CoveoAnalyticsLogEvent/Coveo Analytics Log Event.tpl -------------------------------------------------------------------------------- /tags/Coveo/CoveoAnalyticsLogEvent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Coveo/CoveoAnalyticsLogEvent/README.md -------------------------------------------------------------------------------- /tags/Coveo/CoveoAnalyticsScriptLoader/Coveo Analytics Load Script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Coveo/CoveoAnalyticsScriptLoader/Coveo Analytics Load Script.tpl -------------------------------------------------------------------------------- /tags/Coveo/CoveoAnalyticsScriptLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Coveo/CoveoAnalyticsScriptLoader/README.md -------------------------------------------------------------------------------- /tags/Facebook/FacebookPixel/Facebook Pixel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Facebook/FacebookPixel/Facebook Pixel.tpl -------------------------------------------------------------------------------- /tags/Facebook/FacebookPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Facebook/FacebookPixel/README.md -------------------------------------------------------------------------------- /tags/Generic/TaxonomiesTracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Generic/TaxonomiesTracker/README.md -------------------------------------------------------------------------------- /tags/Generic/TaxonomiesTracker/Taxonomy Tracker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Generic/TaxonomiesTracker/Taxonomy Tracker.tpl -------------------------------------------------------------------------------- /tags/LinkedIn/LinkedInEventPixel/LinkedIn Event Pixel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/LinkedIn/LinkedInEventPixel/LinkedIn Event Pixel.tpl -------------------------------------------------------------------------------- /tags/LinkedIn/LinkedInEventPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/LinkedIn/LinkedInEventPixel/README.md -------------------------------------------------------------------------------- /tags/Pardot/PardotTrackingScript/Pardot.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Pardot/PardotTrackingScript/Pardot.tpl -------------------------------------------------------------------------------- /tags/Pardot/PardotTrackingScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Pardot/PardotTrackingScript/README.md -------------------------------------------------------------------------------- /tags/Qualaroo/Qualaroo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Qualaroo/Qualaroo/README.md -------------------------------------------------------------------------------- /tags/Qualaroo/Qualaroo/qualaroo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Qualaroo/Qualaroo/qualaroo.tpl -------------------------------------------------------------------------------- /tags/Reddit/RedditPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Reddit/RedditPixel/README.md -------------------------------------------------------------------------------- /tags/Reddit/RedditPixel/RedditPixel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Reddit/RedditPixel/RedditPixel.tpl -------------------------------------------------------------------------------- /tags/Sleeknote/Sleeknote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Sleeknote/Sleeknote/README.md -------------------------------------------------------------------------------- /tags/Sleeknote/Sleeknote/Sleeknote.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Sleeknote/Sleeknote/Sleeknote.tpl -------------------------------------------------------------------------------- /tags/Snapchat/SnapPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Snapchat/SnapPixel/README.md -------------------------------------------------------------------------------- /tags/Snapchat/SnapPixel/Snap Pixel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Snapchat/SnapPixel/Snap Pixel.tpl -------------------------------------------------------------------------------- /tags/Taboola/TaboolaPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Taboola/TaboolaPixel/README.md -------------------------------------------------------------------------------- /tags/Taboola/TaboolaPixel/taboola-pixel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Taboola/TaboolaPixel/taboola-pixel.tpl -------------------------------------------------------------------------------- /tags/Uptrends/Uptrends-RUM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Uptrends/Uptrends-RUM/README.md -------------------------------------------------------------------------------- /tags/Uptrends/Uptrends-RUM/uptrends_rum.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Uptrends/Uptrends-RUM/uptrends_rum.tpl -------------------------------------------------------------------------------- /tags/Userpilot/UserpilotTag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Userpilot/UserpilotTag/README.md -------------------------------------------------------------------------------- /tags/Userpilot/UserpilotTag/Userpilot.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Userpilot/UserpilotTag/Userpilot.tpl -------------------------------------------------------------------------------- /tags/Utilities/DataLayerBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/DataLayerBuilder/README.md -------------------------------------------------------------------------------- /tags/Utilities/DataLayerBuilder/dataLayer Builder w-Standard eCommerce.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/DataLayerBuilder/dataLayer Builder w-Standard eCommerce.tpl -------------------------------------------------------------------------------- /tags/Utilities/EnhancedEcommerceDataLayerBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/EnhancedEcommerceDataLayerBuilder/README.md -------------------------------------------------------------------------------- /tags/Utilities/EnhancedEcommerceDataLayerBuilder/dataLayer Builder + Enhanced Ecommerce.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/EnhancedEcommerceDataLayerBuilder/dataLayer Builder + Enhanced Ecommerce.tpl -------------------------------------------------------------------------------- /tags/Utilities/GoogleAnalyticsBlockChecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleAnalyticsBlockChecker/README.md -------------------------------------------------------------------------------- /tags/Utilities/GoogleAnalyticsBlockChecker/gtm-google-analytics-block-checker-custom-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleAnalyticsBlockChecker/gtm-google-analytics-block-checker-custom-template.tpl -------------------------------------------------------------------------------- /tags/Utilities/GoogleTagManagerMonitor/Google Tag Manager Monitor.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleTagManagerMonitor/Google Tag Manager Monitor.tpl -------------------------------------------------------------------------------- /tags/Utilities/GoogleTagManagerMonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleTagManagerMonitor/README.md -------------------------------------------------------------------------------- /tags/Utilities/GoogleTagManagerZone/Google Tag Manager Zone.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleTagManagerZone/Google Tag Manager Zone.tpl -------------------------------------------------------------------------------- /tags/Utilities/GoogleTagManagerZone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/GoogleTagManagerZone/readme.md -------------------------------------------------------------------------------- /tags/Utilities/QualityTrafficIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/QualityTrafficIndicator/README.md -------------------------------------------------------------------------------- /tags/Utilities/QualityTrafficIndicator/quality-traffic-indicator.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/QualityTrafficIndicator/quality-traffic-indicator.tpl -------------------------------------------------------------------------------- /tags/Utilities/UserDistributor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/UserDistributor/README.md -------------------------------------------------------------------------------- /tags/Utilities/UserDistributor/UserDistributor.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Utilities/UserDistributor/UserDistributor.tpl -------------------------------------------------------------------------------- /tags/Vk/DynamicRetargetingPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Vk/DynamicRetargetingPixel/README.md -------------------------------------------------------------------------------- /tags/Vk/DynamicRetargetingPixel/gtm_custom_template_vk_pixel_v1.0_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Vk/DynamicRetargetingPixel/gtm_custom_template_vk_pixel_v1.0_code.js -------------------------------------------------------------------------------- /tags/Vk/DynamicRetargetingPixel/vk_pixel_v1.0_eng.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Vk/DynamicRetargetingPixel/vk_pixel_v1.0_eng.tpl -------------------------------------------------------------------------------- /tags/Yandex/YandexMetrica/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Yandex/YandexMetrica/README.md -------------------------------------------------------------------------------- /tags/Yandex/YandexMetrica/Yandex Metrica.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/tags/Yandex/YandexMetrica/Yandex Metrica.tpl -------------------------------------------------------------------------------- /variables/Currency Conversion.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Currency Conversion.tpl -------------------------------------------------------------------------------- /variables/Dollar to Number.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Dollar to Number.tpl -------------------------------------------------------------------------------- /variables/Enhanced Ecommerce Object Builder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Enhanced Ecommerce Object Builder.tpl -------------------------------------------------------------------------------- /variables/Four Column Lookup.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Four Column Lookup.tpl -------------------------------------------------------------------------------- /variables/Four Column Regex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Four Column Regex.tpl -------------------------------------------------------------------------------- /variables/Page Title DEBUG Mode.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/Page Title DEBUG Mode.tpl -------------------------------------------------------------------------------- /variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/README.md -------------------------------------------------------------------------------- /variables/String from array of objects.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/String from array of objects.tpl -------------------------------------------------------------------------------- /variables/String to Array or Array to String.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/String to Array or Array to String.tpl -------------------------------------------------------------------------------- /variables/URL 2.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/URL 2.0.tpl -------------------------------------------------------------------------------- /variables/User Properties for App + Web.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahava/GoogleTagManagerTemplates/HEAD/variables/User Properties for App + Web.tpl --------------------------------------------------------------------------------