Hi,
I have implement the below code to get the product tab id and it's working fine with multiple language
*********** Get Category Page TabID **************
var HccApp = HccAppHelper.InitHccApp();
var productPage = HccApp.CurrentStore.Settings.Urls.ProductTabId;
return DotNetNuke.Common.Globals.NavigateURL(productPage,"",param).ToString();
Working Perfect (Y)
But when i use the same login to get category page tab id its only returning me English Page Tab ID
var HccApp = HccAppHelper.InitHccApp();
var CategoryTabId = HccApp.CurrentStore.Settings.Urls.CategoryTabId;
return DotNetNuke.Common.Globals.NavigateURL(CategoryTabId, "", param).ToString();
I already rechecked Setting > Page Configuration and all is good both languages have setup values
Why this is behaving like that