Archive

Posts Tagged ‘news feed’

News Feed – Like Facebook 2

November 21st, 2011 Comments off

We need someone to update our website with a news feed area so when users sign in the site they can see: travel plans from people who are going to the same places as they are, from friends, they can see new photos from friends and from people who ARE in the location that they are going, if a friend comment on their photo or profile. They will also see the things their friends are commenting on.

We already have the comment and travel plan features, we only need to display these in a news feed…

WordPress Plugin For News Feed

November 15th, 2009 Comments off

I need a wordpress plugin that will work as per Yahoo news specification

http://developer.search.yahoo.com/help/objects/news#tab2

Basically it will add a news feed from your posts. Something similar exists for Google news http://wordpress.org/extend/plugins/google-news-sitemap-generator/

it is a pretty straightforward job for a WP developer.

Full News Feed Implementation

July 1st, 2009 Comments off

I need an experienced person to custom install a full news feed on my website. It has to be tailored around my wordpress theme. Below are the different customization details to use however I need the coding behind it to pass my web developer toolbar check once finished.

I need this done quickly!

Styling The News Feed:

Below are the different css classes used that can be used to style the headlines and stories.

* StoryTitle – Title in Headline view
* StoryText – Description in Headline view
* StoryItem – Row in Headline view
* StoryItemAlt – Alternating Row in Headline view
* HeadlineLink – Return to Headlines Link
* SingleStoryTitle – Title in Story View
* SingleStoryItem – Story Row/Div in Story View
* SingleStoryText – Story details in Story View

Feed Options

* subscriberKey = string : Required to show feeds
* HeadlineResults – string: The name of the div which will contain the list of headlines that are to be shown. By Default Headline and Results are shown in same div.
* StoryResults – string : The name of the div which will contain the story that is chosen. By Default Headline and Results are shown in same div.
* NumHeadlines – int : The number of headlines to show in the HeadlineResults div
* StoryUrl – string : If you want the story to link to a different page, you need to setup this parameter to the url of the Story. The javascript will add the required QueryString Parameter tho this url as specified by the StoryIdParam option
* StoryIdParam – string : If you want to specify a different querystring parameter for the story ID instead of the default parameter, specify it here. You may need to do this if you use the default StoryIdParam for something else
* ShowReturnLink – bool : This option will toggle whether or not the ‘Return to Headlines’ link is shown when viewing a story.
* ReturnLinkUrl – string : This option will allow you to use a different link other than the default javascript to show the headlines page. It will only show if ShowReturnLink = true
* ReturnLinkText – string : This option will allow you to display different text for the ‘Return to Headlines’ link
* ShowTitleOnly – bool : This option will allow you to only show the headline and not the description in the headline view
* StoryId – int : If you want to specify the StoryId, it can be specified here and will pull this story. *Be aware that the story will not pull if it has expired (is no longer one of the latest 10 stories)

Option Defaults

<script type=”text/javascript” src=”http://feeds.mortgagenewsdaily.com/Scripts/NewsFeed.js” id=”MNDNewsFeed”>
{ subscriberKey : null,
HeadlineResults : “newsResults”,
StoryResults : “newsResults”,
NumHeadlines : 10,
StoryUrl : “javascript:GetStory(‘{0}’);”,
StoryIdParam : “storyId”,
ShowReturnLink : true,
ReturnLinkUrl : “javascript:GetNews();”,
ReturnLinkText : “Return to Headlines”,
ShowTitleOnly : false,
StoryId : null}
</script>

Example for a Main Page and a Story Page:
News.aspx

<script type=”text/javascript” src=”http://feeds.mortgagenewsdaily.com/Scripts/NewsFeed.js” id=”MNDNewsFeed”>
{ subscriberKey : yoursubscriberkey,
HeadlineResults : “headlines”,
StoryUrl : “Story.aspx”}
</script>
<div id=”headlines”>
</div>

Story.aspx

<script type=”text/javascript” src=”http://feeds.mortgagenewsdaily.com/Scripts/NewsFeed.js” id=”MNDNewsFeed”>
{ subscriberKey : yoursubscriberkey,
StoryResults : “storyResults”,
ShowReturnLink : true,
ReturnLinkUrl : “News.aspx”,
ReturnLinkText : “Return to News”
}
</script>
<div id=”storyResults”>
</div>

News Feed For Website

May 14th, 2009 Comments off

I need a news feed for my website. I need a feed that scans the internet and provides links to recent articles on pregnant women involved in car accidents.

Bear