WPIntell

Source evidence

Needs review

News Bar Plus · support · 2012-10-30T15:16:00+00:00

complaintsentiment
mediumseverity
0.86relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

8 / 37 rows with source links

21.6% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
emoemo unresolved
Twitter posts and social icons/links no longer display http://wordpress.org/extend/plugins/news-bar/ I’m getting this same issue. The Twitter messages now just have “Messages Not Found.” with no way to fix them. Any solutions for this? A plugin update, maybe? Ok, I pretty much just Googled the RSS issue with Twitter and figured it out. Twitter changed their link to the RSS feed. You just need to change one line of code and the plugin will work fine. Go to your plugins folder > news-bar > includes > get-news.php Go to line #50, it should look like this: $messages = fetch_rss( 'http://twitter.com/statuses/user_timeline/' . $username . '.rss' ); You want to change it to this: $messages = fetch_rss( 'https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=' . $username ); New Twitter link and remove the “.rss” at the end. Here is the link to the dev forum where I found this: https://dev.twitter.com/docs/faq#11716 Got a better one – in News Bar, go to the bit where you would put in your Twitter username and instead put in this https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=username Change username to your desired twitter account name and change the setting to RSS Feed – works. And it means not having to muck around with the code of the plugin

Comments

3 shown
82concepts 2012-11-07T19:39:00+00:00

I’m getting this same issue. The Twitter messages now just have “Messages Not Found.” with no way to fix them. Any solutions for this? A plugin update, maybe?

82concepts 2012-11-07T20:07:00+00:00

Ok, I pretty much just Googled the RSS issue with Twitter and figured it out. Twitter changed their link to the RSS feed. You just need to change one line of code and the plugin will work fine. Go to your plugins folder > news-bar > includes > get-news.php Go to line #50, it should look like this: $messages = fetch_rss( 'http://twitter.com/statuses/user_timeline/' . $username . '.rss' ); You want to change it to this: $messages = fetch_rss( 'https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=' . $username ); New Twitter link and remove the “.rss” at the end. Here is the link to the dev forum where I found this: https://dev.twitter.com/docs/faq#11716

Emmageddon 2013-02-16T22:16:00+00:00

Got a better one – in News Bar, go to the bit where you would put in your Twitter username and instead put in this https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=username Change username to your desired twitter account name and change the setting to RSS Feed – works. And it means not having to muck around with the code of the plugin