Check my feed here.
When I try to use an xsl stylesheet called rss.xsl and take a look at the HTML source I see:
Shouldn't that be:Code:<?xml-stylesheet type="text/css" href="includes/templates/YOUR_TEMPLATE/css/rss.xsl"?>
?Code:<?xml-stylesheet type="text/xsl" href="includes/templates/YOUR_TEMPLATE/css/rss.xsl"?>
(the xsl stylesheet does not seem to work at al, but because I'm new to this I am not sure if the above really is related)
I fixed the above by replacing 'xls' by 'xsl' (in rss_feed_v2.0.5_20.10.2007) in function rss_feed_out(), and I found the same typo in 2 readme files. So it was caused by a small typo.
Unfortunately my xsl stylesheet still doesn't work for some reason though. It seems server related because if I copy a sample xsl stylesheet to my local PC it works, but when I copy the same file to my server it does not.Even tried another server and the same xsl file works perfect again.
Does xsl depend on the server configuration?
yvw Andrew :-)
Do you think it would be useful to add a dynamic feed name feature? (Maybe you already have plans for this?) Having the same name for multiple subscribed feeds is quite confusing I think. Maybe add the word "featured" to the featured feed name , "specials" to the specials feed name etc etc?
And, I not sure if it's useful or not, and if it's the right way to fix this, but to prevent links like:
I changed (rss_feed.php class, function _clear_url()):Code:<link>http://www.mydomain.com//</link>
To:Code:$out .= $pathinfo["dirname"] . '/';
Code:// $out .= $pathinfo["dirname"] . '/'; // prevent double slashes in path $out .= rtrim($pathinfo["dirname"], '/'); $out .= '/';
Hi... how do you get the price to show?? I've searched the thread, but only found a couple people that got it work, but they didn't say how. I checked out your feed and do see the price at the bottom.
So... how do you get the price to show (my price is set to "true" already in rss admin), and is it possible to put the price next to the description (and if so, how do you do it?)
my feed is here:
http://wyreworks.com/index.php?main_...d=new_products
thanks!
Deanna