Removing/Hiding the News RSS feed in on the dashboard

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 yıl önce
Hi,
Is there a way to remove or hide the RSS news feed from the Dashboard (right side) in the admin section via a setting?...or do I need to edit the aspx file?...I am using version 1.90.
13 yıl önce
So far I am using a quick work-around

            <!--
            <td class="rightcol">
                <nopCommerce:nopCommerceNews runat="server" ID="ctrlNews" />
            </td>
            -->

by commenting it out. Hopefully there is a setting to turn it off instead.
10 yıl önce
In Nopcommerce version 3.3

I could not find a way to disable the news feed in the admin section.
So I added the following the my style sheet in my themes folder.
.rss {display:none;}
8 yıl önce
I'm using the theme Urban and I wanted to hide RSS and show facebook, twitter and youtube totally responsive. For that, I modify the style this way:
In theme / Urban / Content / css / style.css

.rss{
    display:none;
}
.youtube{
    width:100% !important;
}
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.