Xml – Edit XSL for SharePoint 2010 Rss Feed WebPart

sharepointsharepoint-2010web-partsxmlxslt

Greetings,

I'm no XSL/XSLT/XML shark, I have worked with some, though, but I've never touched the rss feed webpart xsl in SharePoint 2010 and have very little knowledge to how it works.

What I am trying to achieve is that when the webpart loads a feed I want the Title to come out, including the Date and the Source of the news feed. All 3 fields are provided, including Description etc.

I know that SharePoint's Rss Feed webpart provides XSL to this, but it doesn't display it how I want it to. So what I ask is how do I customize a display for the rss feeds in the webpart?

Any guides or similar which can tell me how it works is very much appreciated.

Thanks in advance!

Best Answer

You can use the RSS webpart just fine: First edit the webpart and look for the XSL editor button

Edit RSS part image 1 enter image description here

In chrome there will be no button but you will have an edit box here. Then rip out that nonsense they have in there replace with your own xsl. For your edification I include this very simple xsl:

<?xml version="1.0" encoding="iso-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
<html>
  <head>
    <title>What's going on around here</title>
  </head>
  <body>
    <div id="explanation">
      <h3>News Around here</h3>
      <p>Allowing you to stay up to date with the latest news and features from here.</p>
    </div>
    <div id="subscribe"></div>
    <div id="content">
      <xsl:variable name="count" select="4"/>
      <xsl:for-each select="rss/channel/item">
          <xsl:variable name="myURL" select="link"/>
              <div class="article" >

                <a href="{$myURL}" rel="bookmark"> 
                  <xsl:value-of select="title"/>
                </a>
              </div>
      </xsl:for-each>
    </div>
  </body>
</html>

Related Topic