I had a weird issue where my RSS Web Part all of a sudden stopped working. The “loading” GIF was the only thing that would display. BUT, if I put my page in a checked-out or Edit mode, the RSS would show correctly.
After some searching, I found a few sites/posts/forums that suggested to do the following:
- Add a Content Editor WebPart on the page with the RSS
- Paste the following as HTML
- Change the “Appearance” with Chrome Type= None
- Check-In and Publish
Code
<Script Type="text/javascript">
function CustomUpdateFormDigest()
{
if(window._spPageContextInfo != null)
{
var $v_2 = window._spPageContextInfo;
var $v_3 = $v_2.webServerRelativeUrl;
var $v_4 = window._spFormDigestRefreshInterval;
UpdateFormDigest($v_3, $v_4);
}
}
CustomUpdateFormDigest();
</Script>
References
One thought on “SharePoint 2010 RSS Viewer Stuck Loading….”
Seems to do the trick 🙂