pls check this link.Pardis wrote:Caan anyone help me to install this mode in subsilver 2 ?
marksch wrote:Hi,
I can now answer my own question. In the control panel, I have to go to the Styles tab, click on Templates and then on Renew. After doing force-reload in the browser, I can now see the RSS button in my forums.
I also included an RSS button in the address bar. I simply added
afterCode: Select all
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss.php" />
in the file overall_header.html in the folder /styles/proSilver/template/. Note that the file rss.php is in the root of my forum.Code: Select all
<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" /> <link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" /> <link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />
I noticed, however, that the button in the address bar doesn't appear if the forum runs inside a frame in the browser. So, I will add the same link to the headers of the html file that defines the frame.
Best,
Mark
Code: Select all
FIND
{META}
ADD AFTER
<LINK REL="alternate" TITLE="YOUR RSS TITLE" HREF="{U_RSS}" TYPE="application/rss+xml" />
I put this codes in Overall_footer.html and works fine too.vellatechie wrote:Subsilver2 EDIT
Code: Select all
FIND {META} ADD AFTER <LINK REL="alternate" TITLE="YOUR RSS TITLE" HREF="{U_RSS}" TYPE="application/rss+xml" />
Pardis wrote:thanks alot
Did you forget the file name ?
I put this codes in Overall_footer.html and works fine too.vellatechie wrote:Subsilver2 EDIT
Code: Select all
FIND {META} ADD AFTER <LINK REL="alternate" TITLE="YOUR RSS TITLE" HREF="{U_RSS}" TYPE="application/rss+xml" />