When the fields are selected, click Insert Selected Fields as and choose Multiple item view.
Step 6
Right know you should have a data view web part filled with five records. The first thing is to make the user image visible.
Click on the image link and switch to code view, this will bring you to the correct location in the code.
To make the image visible you need to change:
1
<xsl:value-ofselect="google:image_link"/>
To this:
1

Notice the brackets { }, this can be used as short notation for selecting your data.
Step 7
The next step is to make the username clickable. The result string that you retrieve from Twitter is something like this: [email protected] (Elio Struyf).
So what you need to do is retrieve the username (eliostruyf) and create a new link that references http://twitter.wom/Username
The users’ full name will be used for the text to display.
The disable-output-escaping parameter indicates that HTML characters like “<” and “>”, will be output as is. No is the default value and they will be converted “<” and “>”.
Step 9
The last step is to remove the +0000 value from the date. This can be easily done by the substring-before function.