Is it possible to get hold of the url to the top level site for a variation site?
This gives me a peer to peer link so I can create a language switch button:
<a href="<%# DataBinder.Eval(Container.DataItem, "NavigateUrl") %>"><%# DataBinder.Eval(Container.DataItem, "DisplayText") %></a>
But I need a homepage link so the user can go to the homepage of the variation site and not to the homepage of the site collection.
It's like the opposite of this I need:
<cms:VariationDataSource id="LabelMenuDataSource" LabelMenuConfiguration="3" Filter="" runat="server" />
The above gives me the top level of the peer site.
DavidgCCC