• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

How do I get rid of the RSS thing?

imthebest

Member
Showcase
Sportsbook
Hello Bob,

For example, when I'm at: Showcase | XenAddons - XenForo Add-ons & Custom Development

Inside the "Quick Stats" block at the sidebar there is an RSS icon. I want to get rid of it and also -if possible- disable direct access to showcase/index.rss

I tried by editing template nflj_showcase_index_sidebar and removing the following block:

Code:
<dl>
                        <dt></dt>
                        <dd><a href="{xen:link showcase/index.rss}" class="showcaseFeedIcon" title="{xen:phrase nflj_showcase_rss_feed_for_showcase}">{xen:phrase rss}</a></dd>
                    </dl>

And it removes the RSS icon from the Quick Stats block but it adds the icon to right side of the footer :(

Thanks,
imthebest
 
There is no option to enable/disable the RSS link. The only option you have is to remove it or hide it via CSS.

HTML:
                    <xen:comment><dl>
                        <dt></dt>
                        <dd><a href="{xen:link showcase/index.rss}" class="showcaseFeedIcon" title="{xen:phrase nflj_showcase_rss_feed_for_showcase}">{xen:phrase rss}</a></dd>
                    </dl></xen:comment>
Works perfectly fine for me.

Selection_633.png

but it adds the icon to right side of the footer

If you are talking about this, then that is the XenForo RSS and displays globally in the footer.

Selection_634.png
 
Back
Top