We currently have a multilingual site with no specific domain per language (e.g. www.umbracotest.com for all languages).
We currently render the page through below code (reference: documentation). Note that we use ip-detection to identify which language to render.
var blocks = Model.Value("blocks", culture: culture, fallback: Fallback.ToDefaultLanguage) as BlockGridModel;
I’m able to set-up A/B Testing variants per culture/language. The only thing I’ve noticed is that it can only render the variant for the default language. As per testing, we will need to set-up a domain per language for it’s variants to be rendered. I have also noticed that only the default language’s analytics is getting tracked.
Is there any workaround on this?