Forcing dotText to show my feedburner link in stead of the standard rss link
I just created a feedburner feed, to get some stats on usage etc.
But I don’t want to edit the standard templates (mostly because I currently do not have acces to them).
So how to change my rss feed link to poin to feedburner? Well in this case I took the DHTML way out.
It won’t help for existing subscription, but will work for new ones. Here’s the trick.
Just add the following code to the static news section:
<SCRIPT language=javascript>
var x = document.getElementById(“MyLinks1_XMLLink”);
x.href=”http://feeds.feedburner.com/RaimondBrookman“;
</SCRIPT>
Voila!
(Btw this also does not fix autodiscovery links… looks like I just have to tweak te webserver after all…)