how and where to change the behavior of the forum RSS links to navigate to those pages...
instead of opening a new
how and where to change the behavior of the forum RSS links to navigate to those pages... |
I do not think this is possible. Orca uses all XML and each link is called from an XML file - I took a quick look around and was not able to find where ti sets the link.
Give me the URL and I can take a deeper look, once I know which file you actually want the links modified on.
D |
well thank you 4 trying 2 help i did spend couple hours looking around some files and just like u said it i don't think it can be done |
What is the url you are looking to change the links on -- I have an idea.
D |
one on the home page that shows lest forum posts |
ok here's how to change it open /inc/js/jquery.dolRSSFeed.js find <a href="' + item.link + '" target="_blank">' + item.title + '</a>' + and chang it to <a href="' + feed.link + '" target="_self">' + feed.title + '</a>' + that way it will open in the same window no more new pop up :)))) |
great solution! Thanks man! |