Continuous rss scrolling
March 24, 2012 |
Posted by:
Gopi R |
Wordpress plugin |
50 Comments |
Continuous rss scrolling plugin create the vertical scroll in the widget using given rss feed. This will scroll only the rss title in the widget. The title will scroll one by one in the widget area. Using this plugin we can show any rss feed in our website. No coding knowledge required to configure this plugin. Activate the plugin and drag and drop the widget to sidebar and check the front end. You can able to see the scroll with default rss feed.
Features of this plugin
- Easy installation.
- Can add any rss feed.
- Easy scroller setting.
See live demo on sidebar. Do you want to scroll the own content instead of rss feed? use my continuous announcement scroller wordpress plugin.
Installation instruction
Method 1
- Download the plugin continuous-rss-scrolling.zip from download location.
- Unpack the continuous-rss-scrolling.zip file
- Extract the /continuous-rss-scrolling/ folder.
- Drop the continuous-rss-scrolling folder into your ‘wp-content/plugins’ folder.
- In word press administration panels, click on plug-in from the menu.
- You should see your new continuous rss scrolling plug-in listed.
- To turn the word presses plug-in on, click activate.
Method 2
- Go to ‘add new’ menu under ‘plugins’ tab in your word-press admin.
- Search continuous rss scrolling plugin using search option.
- Find the plugin and click ‘Install Now’ link.
- Finally click activate plug-in link to activate the plug-in.
Method 3
- Download the plugin continuous-rss-scrolling.zip from download location.
- Go to ‘add new’ menu under ‘plugins’ tab in your word press admin.
- Select upload link (top link menu).
- Upload the available continuous-rss-scrolling.zip file and click install now.
- Finally click activate plug-in link to activate the plug-in.
Configuration
Option – 1 : Go to widget link under Appearance tab, Drag & drop ‘continuous rss scrolling’ into your side bar.
Option – 2 : Copy and paste the mentioned php code in desired template location ie your PHP file. <?php if (function_exists (crs)) crs(); ?>
Frequently asked questions
Q1. Can I add more then one RSS feed at same time?
No, You can add only one RSS url at a time.
Q2. Why my news content out of range?
This is the continuous scroll, so we need to maintain the same height for the content, for that you need to update the admin property “Each scroller height in scroll”.
Q3. Can I change the scroll manner from vertical to horizontal?
No, at present option not available.
Q4. What is “Display number of record at the same time in scroll”?
This property is to set the no of record to display(in front end) at the same time.
Q5. What is “Enter max character for each post/title”?
This is to fix the no of character for each post.
Q6. Why my news content overlap each other?
This is the continuous scroll, so we need to maintain the same height for the content, for that you need to update the admin property “Each scroller height in scroll”.
Download location
http://www.gopiplus.com/work/wordpress-plugin-download/
Other scrolling plugin
- Continuous announcement scroller
- WP fade in text news
- Announcement and vertical scroll news
- Horizontal scrolling announcement
Donation
All modules, plugins in this website are completely FREE. If you find the software useful please consider making a donation(PayPal). All donations will go towards improving this web website and maintenance.


How can I change the color of the background?
how can i adjust the widget so that the links are opened in a new window/tab?
This plug in is very close to what I was looking for. Do yu have any plans to include options for 1) slowing the feed rotation speed, and 2) showing the item summary (description) content?
Thanks!
Mariana: in continuous-rss-scrolling.js in the plug-in folder change
// start scrolling
setTimeout(“crs_scroll();”, 2000);
to (for example)
// start scrolling
setTimeout(“crs_scroll();”, 8000);
to slow down the scrolling
Is it real to add into feed thumbnails from rss?
Example: http://appshopper.com/feed/paidtofree/?device=iPhone
Great widget! Nice work!
Is there a way to add more than one news feed?
Is there a way to open the link in a new tab/window?
Other than that its a great widget!
Is there a way to modify the code so the rss link opens in a new window? Thanks!
Hi Luke,
You can create a multiple RSS feed at http://rssmix.com/, and then just use the feed url from this to create a combined feed. Great plugin!
I tried this and for some reason it won’t show anything on the feed. Am I missing a step. It works fine if I just use one of the individual feeds.
I am trying to do the same thing but cant get it to show any data.
I tried rssmix.com and also tried the google reader published feed. This consolidates many feeds into one output, but again this widget displays nothing, even with the google folder set to PUBLIC.
Help!
who open link new window?
great widget . .
How do you change the overall height of the scroller?
thank you,
Ryan
Like this widget started using it would be nice to have a option to open the links in a new window ?
Still searching for the code
this is very simple to do..
Hi All, Please check the new version of this plug-in “3.0″. two new feature.
1. Only admin use can access this plug-in via admin –> setting tab
2. Links will open in the new window
Hi there,
i installed this plug in, but suddenly it takes a huge amount of time to load slowing down the loading of the entire site.
I upgraded to version 3 but the delay still occurs.
RSS loads rapidly on rss readers but the plugin takes more than 10 seconds to load.
Thank you for the update, but I don’t want the links to open in a new window! I am using this to highlight a RSS feed of one of the categories on my own blog. I want links to open in the same window.
Is it possible to make this an option rather than making all the links open in new windows by default?
Thank you for the great plugin!
Michelle
Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /home/vol13/xtreemhost.com/xth_7139719/htdocs/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 61
Warning: fopen(http://news.google.com/news?ned=us&topic=h&output=rss) [function.fopen]: failed to open stream: no suitable wrapper could be found in /home/vol13/xtreemhost.com/xth_7139719/htdocs/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 61
Warning: fread(): supplied argument is not a valid stream resource in /home/vol13/xtreemhost.com/xth_7139719/htdocs/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 62
Warning: fclose(): supplied argument is not a valid stream resource in /home/vol13/xtreemhost.com/xth_7139719/htdocs/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 63
can u tell how to fix that? im using wp 3.05 in free host, ty
solution:
…
////////////////////////////////////////////////////////////////
$ch = curl_init($url);
$f = @fopen(“temp.xml”, “w”);
curl_setopt($ch, CURLOPT_FILE, $f);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($f);
$url = “temp.xml”;
////////////////////////////////////////////////////////////////
$xml = “”;
$cnt=0;
$f = fopen( $url, ‘r’ );
while( $data = fread( $f, 4096 ) ) { $xml .= $data; }
fclose( $f );
preg_match_all( “/\(.*?)\/s”, $xml, $itemblocks );
$cnt=0;
…
I’m having a problems recently with the item title not showing on the scroll. There is an arrow on the left which should point to the product name but it is blank. However, when I click on the arrow, it links to the product. How do I get the title to show beside the arrows? I now have gaps everywhere on the scroll! Many thanks in advance.
any plans for horizontal rss display.
would be prefer if we could get that going
Hello,
I really like this plugin but I am getting this error…
Warning: fopen(http://news.google.com/news?ned=us&topic=n&output=rss) [function.fopen]: failed to open stream: HTTP request failed! HTTP/1.0 503 Service Unavailable in /hermes/bosweb/web217/b2176/ipg.spectrum/blogsite/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 61
Warning: fread(): supplied argument is not a valid stream resource in /hermes/bosweb/web217/b2176/ipg.spectrum/blogsite/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 62
Warning: fclose(): supplied argument is not a valid stream resource in /hermes/bosweb/web217/b2176/ipg.spectrum/blogsite/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 63
I tried re-installing the plugin but it did not work.
Please help me fix this issue if you can. Thank you!
hi, there. Just wondering how do I get the post date to the news scroller please. thanks a lot
Hi,
I have the following RSS feed link: http://www.rssmix.com/u/2121809/rss.xml, I have tryed your Plugin but it would not work, it shows blank space … can u advice me what is wrong ?
Fawaz
9. We are a group of volunteers and starting a new scheme in our community. Your site offered us with valuable info to work on. You have done an impressive job and our entire community will be grateful to you.
Doesn’t seem to work with Facebook RSS feeds. Any reason why?
Hi, I’ll try to install both this plugin both vertical scroll, it’s all ok but when I use the widget the title article don’t appear….
Your site offered us with valuable info to work on
I’ve installed the plug in and it is scrolling but it’s not scrolling the feeds from my twitter. How do I put my twitter feed into the program so it’s my info that scrolls.
Thanks
Warning: fopen(http://news.google.com/news?ned=us&topic=h&output=rss) [function.fopen]: failed to open stream: HTTP request failed! HTTP/1.0 503 Service
Getting this error of out nowhere. Was working yesterday, now its not working today. THoughts?
It doesn’t work. Every news shows a different error:
Warning: fopen() [function.fopen]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in…
Warning: fopen(http://www.diritto24.ilsole24ore.com/content/law24/guidaAlDiritto.rss.xml) [function.fopen]: failed to open stream: no suitable wrapper could be found in …
Warning: fread() expects parameter 1 to be resource, boolean given in /….
Warning: fclose() expects parameter 1 to be resource, boolean given in….
etc..
u need internet connection to access the url
Great Plugin!
I have a problem with the carac. codification… some of the feeds shows extrange caract. It is possible to decode the text showed?
Thanks in advance
fabuleuse roveranei de endontala y perio con diana porfitiza. pestea a ranicos y requal centeal con cemelina condo!
In clicking on the title of the widget, the user is taken to a moving company – http://www.libertyrelocation.net/
What’s the deal with this? This is terrible!
The RSS feed I would like to show on my home page using CRS includes some CDATA sections. The links for these entries are not formulated correctly resulting in a 404 error. I am using version 4.0 of CRS and I’m sure it worked correctly with the previous version. The RSS feed is http://ourmaritimeties.com/tng/tngrss.php. Is there a fix for this or can I get a copy of the previous version (new to WP and only had a copy in the WP content folder).
TIA, Arthur
F*ckin’ tremendous issues here. I’m very glad to see your article. Thanks so much and i am taking a look forward to contact you. Will you please drop me a e-mail?
Hi, thanks for the nice plugin!
It would be awesome if the following was included:
- Possibility to add several rss feeds
- Possibility to show images/thumbnails from rss feeds
- Possibility to add the rss feeds into post/pages etc. with shortcodes
I have been looking desperately for a plugin that can do the things I mentioned above, but there is no one so far!
For what it is worth the following line was commented out in my copy. Had to uncomment to start scroilling.
<script type="text/javascript" src="/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.js”>
Mike, where is that script located? I can’t seem to find where it should be located.
Hi Guys
I installed Continuous RSS scrolling on localhost and works perfectly but when I transfer the files to live server: http://www.shabsproperties.co.za/demo it shows “undefined”.
I tried to uninstall the plugin by delete continuous rss scrolling dir under plugins via ftp-client then re-install it but still showing ‘undefined’. Could you please help, what may I’m doing wrong?
Thanking you in advance!
Scroll works but the link go to a 404 page. the link is changed to “http://albertaevents.com/network/%3C![CDATA[http://www.albertaevents.com/calendar/index.php?com=detail&eID=15986]]%3E “. instead of http://www.albertaevents.com/calendar/index.php?com=detail&eID=15986 Where did all that extra code come from? Can this be corrected?
Please Help, rss continuous won’t work on this site. (http://murdockcapital.com/wordpress1).
Works fine on others, like (www.mediahead.tv) this comes up on front page.
Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /data/9/1/47/79/1210568/user/1290290/htdocs/wordpress1/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 69
Warning: fopen(http://rss.cnn.com/rss/cnn_world.rss) [function.fopen]: failed to open stream: no suitable wrapper could be found in /data/9/1/47/79/1210568/user/1290290/htdocs/wordpress1/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 69
Warning: fread(): supplied argument is not a valid stream resource in /data/9/1/47/79/1210568/user/1290290/htdocs/wordpress1/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 70
Warning: fclose(): supplied argument is not a valid stream resource in /data/9/1/47/79/1210568/user/1290290/htdocs/wordpress1/wp-content/plugins/continuous-rss-scrolling/continuous-rss-scrolling.php on line 71
Wonderful beat ! I wish to apprentice whilst you amend your site, how does someone subscribe for just a blog website? The account taught me to be a appropriate deal. I became touch acquainted in this your broadcast offered vivid transparent ideaArcheage Gold for Sale
I get the same errors as MediaHead.
Hi my family member! I want to say that this post is awesome, nice written and come with approximately all important infos. I would like to see more posts like this .
Hi Gopi,
I have downloaded this plugin and it is a nice plugin. However is there any way to change the font color of the scrolling text. I am asking this since i hv put this in the footer and my footer is black…so the text is very light.
Pls let me know if there is any way to do this. I would like Yellow color for the scrolling text.
My website is http://www.vandanam.com
Thanks,
Sajeev
Hi there,
I just installed the plugin but am having problems feeding one particular RSS Feed’s URL. The plugin isnt showing any errors and appears to have allocated the right amount of space to display the feed headings, but it is just blank. Here’s the URL Im trying to feed – any ideas? http://www.bitronlubricants.com/support/rss/index.php?/News/Feed
I have tried the built in WordPress RSS widget using the same link to the above RSS Feed and it works fine – but I really like the scrolling idea and want to get it working.
If you can help that would be great
Cheers,
Kev
try with diff rss link
I’ve tried other rss feeds from other blogs and they work perfectly. The rss link I posted above is not working using this particular plugin. The link works with the built in RSS widget in wordpress (non scrolling) but with this particular plugin it just appears blank. I’ve tried the basics that I know of to get it going but so far no luck. Anyone have any ideas? Thanks Kev