Umbraco 7 Get Media images by ID when using the Multi Media Picker to display a Gallery
Umbraco 7 Get Media images by ID when using the Multi Media Picker This is usefull when creating a gallery of images. 1) In your Doctype add the Multiple Media Picker 2) Umbraco 7 Razor code snippet partial: @inherits Umbraco.Web.Mvc.UmbracoTemplatePage @helper RemoveExtensions(string stringIn) { var thisTitle = stringIn; thisTitle = thisTitle.Replace(".jpg", ""); thisTitle = thisTitle.Replace(".png", ""); thisTitle = thisTitle.Replace(".jpeg", ""); thisTitle = thisTitle.Replace(".gif", ""); thisTitle = thisTitle.Replace(".bmp", ""); thisTitle = thisTitle.Replace("-", " ");