I found that my website is being tracked by a Google Tag Manager without my consent. Further investigation in the database revealed that TDS_TRACKINGS_TEMPLATES contains a code. I need to locate this on my server to remove the code.
Something added: https://www.googletagmanager.com/gtag/js?id=G-LYTBNS5RRS
-
This topic was modified 2 years by
heathcliff.
Hello!
There is a special field for Google Analytics (theme panel>analitics/js code).
Similar topics regarding GA4 are here:
– https://forum.tagdiv.com/topic/how-to-find-and-add-call-to-action-google-analytics-tracking-code/
– https://forum.tagdiv.com/topic/track-ad-performance/
Thank you!
Thank you for your reply, no I have not added any Google Analytics code because I am using my own Analytics and there is something tracking my site without my consent, I need to investigate this further.
Another question: How can I setup my template so that images inside the article pops out from the text like in this beautiful example from Tagdiv:

Thanks @bettina
Hello!
That is the lightbox effect or check this thread if you want to expand on click: https://forum.tagdiv.com/topic/modal-window-lightbox-effect-icon/
Thank you!
Hi @bettina, no that’s not it. It looks like the text has margin on the left and right making the image inside the article pop out, see https://demo.tagdiv.com/newspaper_pro/td-post-this-new-headphone-from-sony-cancel-out-almost-every-background/
Hello!
You should modify the text in the editor and increase the indent: https://app.screencast.com/RdRjmXpZG2UgP
Thank you!
Hey @bettina, instead of doing this manually I wrote this code instead:
/* Default padding for desktop */
article p, .wp-element-caption, .wp-block-heading {
padding-left: 60px;
padding-right: 60px;
}
/* Remove padding for p elements inside blockquote */
article blockquote p {
padding-left: 0;
padding-right: 0;
}
/* Reduced padding for mobile */
@media only screen and (max-width: 767px) {
article p, .wp-element-caption, .wp-block-heading {
padding-left: 10px;
padding-right: 10px;
}
/* Remove padding for p elements inside blockquote on mobile */
article blockquote p {
padding-left: 0;
padding-right: 0;
}
}
About the Google Tag Manager issue, I failed to find the source.