For some reason there is a new link on my quicklinks called “Site Contents”.
Solutions I’ve tried (and failed):
1)When I go to navigation on site settings, it does not show up there so I can’t hide it or delete it.
2) using Navigation Elements to get rid of all the quicklinks won’t be helpful because all the quicklinks were gone except “Site Contents”
3) Entering this script gets rid of all of quicklinks even Site Contents. <style>#sideNavBox { display:none; }</style> Only problem is I want to keep my quicklinks.
Any suggestions?
You could try this jquery
$(“span:contains(‘Site contents’)”).closest(‘li’).css(“display”, “none”);
Basically you find the site contents span and get the li tag to hide it. Just check if your html id in the same format.