NopCommerce admin Dashboard News Feed

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
Hi

How do I can I remove the NopCommerce News feed from the admin Dashboard they dont want it unfortunatly.

Thank You

I
11 years ago
in file Presentation\Nop.Web\Administration\Views\Home\Index.cshtml

remove these lines

<td class="rightcol">
            @Html.Action("NopCommerceNews", "Home")
        </td>


HTH
11 years ago
Done

Thank You

Richard
7 years ago
Is this still the way to do it in the new nopcommerce version 3.8.
Just thought they might have a setting to turn this off by now?

Can anyone confirm?

Thanks
7 years ago
dcarn wrote:
Is this still the way to do it in the new nopcommerce version 3.8.
Just thought they might have a setting to turn this off by now?

Can anyone confirm?

Thanks


There is no such setting, to remove this block you have to delete the following code:
            
@if (!Model.IsLoggedInAsVendor)
{
    <div class="row">
        <div class="col-md-12">
            @Html.Action("NopCommerceNews", "Home")
        </div>
    </div>
}

from Views\Home\Index.cshtml

or you just can collapse this block.
7 years ago
Thanks for the confirmation.
4 years ago
How can i do for version 4.20?

Mariann wrote:
Is this still the way to do it in the new nopcommerce version 3.8.
Just thought they might have a setting to turn this off by now?

Can anyone confirm?

Thanks

There is no such setting, to remove this block you have to delete the following code:
            
@if (!Model.IsLoggedInAsVendor)
{
    <div class="row">
        <div class="col-md-12">
            @Html.Action("NopCommerceNews", "Home")
        </div>
    </div>
}

from Views\Home\Index.cshtml

or you just can collapse this block.
4 years ago
Same as above

Remove
            
@if (!Model.IsLoggedInAsVendor)
{
    <div class="row">
        <div class="col-md-12">
            @Html.Action("NopCommerceNews", "Home")
        </div>
    </div>
}

From

Presentation\Nop.Web\Areas\Admin\Views\Home\Index.cshtml
4 years ago
Thank you Mariann! Still works in 4.20

Mariann wrote:
Is this still the way to do it in the new nopcommerce version 3.8.
Just thought they might have a setting to turn this off by now?

Can anyone confirm?

Thanks

There is no such setting, to remove this block you have to delete the following code:
            
@if (!Model.IsLoggedInAsVendor)
{
    <div class="row">
        <div class="col-md-12">
            @Html.Action("NopCommerceNews", "Home")
        </div>
    </div>
}

from Views\Home\Index.cshtml

or you just can collapse this block.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.