Posts

Showing posts with the label Title tag

Sitecore bug solution: Media Library item Title meta info field not working

The problem We have found that a number of Sitecore versions (at minimum up to 7.2) have a problem with defining the Title field (used for onhover's) of Media items such as images. Even though Sitecore has a Title field on media library items (metadata), it is not rendered correctly. We tested this on multiple sitecore environments with these scenarios: using the sc:image fieldrenderer rich text field using an inclosed image from the media library I opened up a ticket with Sitecore and they acknowledged the problem as a bug and will take this up with their patching and version releases. In the meanwhile you can As a workaround, you can do the following: To resolve this issue in the <sc:image> XSL Extension Control You can override the <processor type="Sitecore.Pipelines.RenderField.GetImageFieldValue, Sitecore.Kernel" /> processor in the <renderField> pipeline. You should create your own class. For example: 1 2 3 4 5 6 7...