I thought I had tested that out and it was working. Perhaps not. In any case, my copy is now doing the same thing. I found a fix. In the js folder replace the simple_crawler.js file with this one:
simple_crawler.js
The more I think about it, it was working. That feed must have changed their output for the permalinks. No matter, this fix will not harm other feeds' permalinks, as it will do nothing to those that follow the usual format, while fixing any that do it the way this feed is now doing.
As for having only one feed, just change (on the simple_ticker_demo.htm) this:
Code:
<body>
Some other content above
<div id="irishanglers" class="marquee"></div>
<script type="text/javascript">
new rsscrawler('http://pipes.yahoo.com/pipes/pipe.run?_id=01cac7772e5b26ab65968cd03ed3d8d1&_render=rss', 'irishanglers');
</script>
Some other content below
<div id="ddfeed" class="marquee"></div>
<script type="text/javascript">
new rsscrawler('http://www.dynamicdrive.com/export.php?type=new', 'ddfeed');
</script>
Some other content below
</body>
to this:
Code:
<body>
Some other content above
<div id="irishanglers" class="marquee"></div>
<script type="text/javascript">
new rsscrawler('http://pipes.yahoo.com/pipes/pipe.run?_id=01cac7772e5b26ab65968cd03ed3d8d1&_render=rss', 'irishanglers');
</script>
Some other content below
</body>
And if you want that to go to a different feed, just change the url (highlighted), ex:
Code:
<body>
Some other content above
<div id="irishanglers" class="marquee"></div>
<script type="text/javascript">
new rsscrawler('http://fishingnews.posterous.com/rss.xml', 'irishanglers');
</script>
Some other content below
</body>
The id (red two places) may remain the same as long as this is the only feed on the page. But I used 'irishanglers' for that other feed because it's descriptive. Just like I used ddfeed for the Dynamic Drive feed. It's good to keep your id's descriptive, just so you can keep track of which feed is which. But as far as the code is concerned the only requirement is that if there are more than one feed on a page, each feed on the page has to have a unique id.
Bookmarks