Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.
For more information and upcoming events around #dominoforever, please visit our Destination Domino Page
This is a growing issue that my team is struggling with. Google Analytics routinely add tracking to URLs and they always start with something like '?utm' or '?_gl' which doesn't work when hosted on Domino (not XPages, classic Domino). For things we can control, like adding UTMs, we can easily change '?utm' to '?open&utm', but now Google has started adding tracking without our intervention so there's to way to be preemptive or change the link they are serving up to add the '?open&' so the page will load correctly.
I agree it should be handled gracefully.
I fixed it by adding this code in my head:
(function() {
var param = 'fbclid';
if (location.search.indexOf(param + '=') !== -1) {
try {
var url = new URL(location);
url.searchParams.delete(param);
history.replaceState(null, '', url.href);
location= url;
} catch (ex) {
// pass
} }
})();
Theo Heselmans
it's e.g. an issue with the blog template. Currently my workaround is a redirect to the root host URL.