Location: site_wide_header
Google AdSense Ad blocking recovery (Head Section)
Same Height Boxes
.same-height-boxes{ display: grid; height: 100%; grid-template-rows: auto 80px;Continue reading
Microsoft Web Master Tool
Google Tag Manager
Google Tag Manager Head
Favicon – reference
Goal Tracking Pixel
var peGoal = { name : “Enter goal name”, count: 1, value: 1, // Enter goal value in numbers }; window.PushEngage = window.PushEngage || []; PushEngage.push(function() { PushEngage.sendGoal(peGoal).then(function(data) { console.log(data) }).catch(function error(error) { console.log(error.message) }); });Continue reading
Add Profile ID to Subscriber
var peProfileId = “Enter Profile Id”; window.PushEngage = window.PushEngage || []; PushEngage.push(function () { PushEngage.setProfileId(peProfileId) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error.message, error.details); }); });Continue reading
Remove Subscriber from Segment
var peRemoveSegmentNames = []; // Array of segment ids e.g, [“segment1”, “segment2”] window.PushEngage = window.PushEngage || []; PushEngage.push(function () { PushEngage.removeSegment(peRemoveSegmentNames) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error.message, error.details); }); });Continue reading