Search the Community
Showing results for tags 'links'.
-
For Version 4.4.0.40. In case anyone needs to add links back up top where they used to be. The latest update broke the previous fix. Here is how to add them back. Note: I know nothing of HTML but I kind of figured it out by using the old fix. First, go to Users>AppData>Roaming>Emby-Server>System>dashboard-ui and copy the item folder somewhere else to make a backup in case you screw something up. Now that you have a backup, go into the item folder (not the backup, the other one) and edit the file item.html with preferably Notepad ++ if you have it. Scroll down to the following lines (413-416) and delete them. Here is the code that you will delete: <div class="verticalSection linksSection hide"> <h2 class="sectionTitle padded-left" style="margin-bottom:.4em;">${Links}</h2> <div class="itemLinks padded-left padded-right focusable"></div> </div> Then scroll up to the following lines (273-275): <div class="seriesRecordingEditor hide" style="margin-top:2em;"> </div> and paste the following lines after it (276-278) <div class="verticalSection detailVerticalSection linksSection hide"> <div class="itemLinks padded-right"></div> </div> it should look like the following lines (273-282): <div class="seriesRecordingEditor hide" style="margin-top:2em;"> </div> <div class="verticalSection detailVerticalSection linksSection hide"> <div class="itemLinks padded-right"></div> </div> </div> </div> <div class="trackList vertical-list padded-top padded-left padded-right padded-bottom hide" is="emby-itemscontainer" style="margin-bottom:1.5em;"> It should look like this Looks good, right? Again, I don't know HTML so I'm not the best person to be doing this but I couldn't find any threads since the latest update that broke the previous fix so I figured I would try to fix it myself and I guess I did. Please make a backup of that item folder before you begin though. Hope this helps someone. Edit: Oh yeah, you will probably need to restart Emby as well as clear your browser cache. If you made the changes but nothing changed, then clear your browser's cache.