Multistore
Running multiple storefronts from a single Smartstore installation
Overview
IIS host mapping
Store context
public class StoreBannerService
{
private readonly IStoreContext _storeContext;
public StoreBannerService(IStoreContext storeContext)
{
_storeContext = storeContext;
}
public string GetBannerText()
{
return $"Welcome to {_storeContext.CurrentStore.Name}";
}
}Store specific settings
Store mapping
Modules and themes
Last updated
Was this helpful?