XF 2.0 remove RSS completely?

Escobar

Active member
Any way to remove RSS completely right now i just hidden the icons with css but i wanna make sure nobody can use it no more. Any idea f this is possible?
 
Should be possible. Choose your design and choose the following template
PAGE_CONTAINER
and comment out this line (573).

HTML:
<!-- <li><a href="{{ link('forums/index.rss', '-') }}" target="_blank" class="p-footer-rssLink" title="{{ phrase('rss')|for_attr }}"><span aria-hidden="true"><i class="fa fa-rss"></i></span></a></li> -->

Note that with an upgrade possibly your data can be overwritten again!
 
In XF 2.2 remove line 607

HTML:
<li><a href="{{ link('forums/index.rss', '-') }}" target="_blank" class="p-footer-rssLink" title="{{ phrase('rss')|for_attr }}"><span aria-hidden="true"><xf:fa icon="fa-rss" /><span class="u-srOnly">{{ phrase('rss') }}</span></span></a></li>
 
In XF 2.2 remove line 607

HTML:
<li><a href="{{ link('forums/index.rss', '-') }}" target="_blank" class="p-footer-rssLink" title="{{ phrase('rss')|for_attr }}"><span aria-hidden="true"><xf:fa icon="fa-rss" /><span class="u-srOnly">{{ phrase('rss') }}</span></span></a></li>

That only removes the link, you can still access the URL directly.
 
Top Bottom