Display feed-icon
Posted: 05 Mar 2010, 11:23
Display feed-icon on forum index, viewforum and viewtopic
Written by djs596 and Stoker
Do the following if you want to display the feed-icon on forum index, viewforum and viewtopic.
Note that this is for phpBB 3.0.6
Subsilver2 feed icon instructions
Show the feed-icon on viewtopic
Note that you have to enable topic feeds in ACP.
Open styles/prosilver/template/viewtopic_body.html
Find:
After add:
Screenshot:
Show the feed-icon on viewforum
Note that you have to enable forum feeds in ACP.
Open styles/prosilver/template/viewforum_body.html
Find:
After add:
Screenshot:
Show the feed-icon on forum index Thanks djs
Note that you have to enable forum feeds in ACP.
Open styles/prosilver/template/forumlist_body.html
Find:
Replace with:
Screenshot:
Upload the changed files and refresh template in ACP
Written by djs596 and Stoker
Do the following if you want to display the feed-icon on forum index, viewforum and viewtopic.
Note that this is for phpBB 3.0.6
Subsilver2 feed icon instructions
Show the feed-icon on viewtopic
Note that you have to enable topic feeds in ACP.
Open styles/prosilver/template/viewtopic_body.html
Find:
Code: Select all
<!-- INCLUDE overall_header.html -->
Code: Select all
<!-- IF S_ENABLE_FEEDS and S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID -->
<a class="feed-icon-forum" title="{L_FEED} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}"><img src="{T_THEME_PATH}/images/feed.gif" title="{L_FEED} - {TOPIC_TITLE}" alt="{L_FEED}" /></a>
<!-- ENDIF -->
Show the feed-icon on viewforum
Note that you have to enable forum feeds in ACP.
Open styles/prosilver/template/viewforum_body.html
Find:
Code: Select all
<!-- INCLUDE overall_header.html -->
Code: Select all
<!-- IF S_ENABLE_FEEDS and S_ENABLE_FEEDS_FORUM and S_FORUM_ID -->
<a class="feed-icon-forum" title="{L_FEED} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}"><img src="{T_THEME_PATH}/images/feed.gif" title="{L_FEED} - {FORUM_NAME}" alt="{L_FEED}" /></a>
<!-- ENDIF -->
Show the feed-icon on forum index Thanks djs
Note that you have to enable forum feeds in ACP.
Open styles/prosilver/template/forumlist_body.html
Find:
Code: Select all
<!-- <a class="feed-icon-forum" title="{L_FEED} - {forumrow.FORUM_NAME}" href="{U_FEED}?f={forumrow.FORUM_ID}"><img src="{T_THEME_PATH}/images/feed.gif" title="{L_FEED} - {forumrow.FORUM_NAME}" /></a> -->
Code: Select all
<a class="feed-icon-forum" title="{L_FEED} - {forumrow.FORUM_NAME}" href="{U_FEED}?f={forumrow.FORUM_ID}"><img src="{T_THEME_PATH}/images/feed.gif" title="{L_FEED} - {forumrow.FORUM_NAME}" alt="{L_FEED}" /></a>
Upload the changed files and refresh template in ACP