Simple Question

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 лет назад
Hi,

I'm brand new to nop and have a simple question:

How do I get my store name to appear in the Copyright section at the bottom.

I added my Store Name in the Admin section but it still says:

Copyright © 2011 Store name here. All rights reserved
12 лет назад
What version of NopC do you have?  This was fixed in 2.1.

If you have 2.0, you can hard code your store name if you don't yet want to upgrade.
(Hard coding this page does not require a re-compile.)

src\Presentation\Nop.Web\Views\Shared\Footer.cshtml

<div class="footer-disclaimer">
        @T("Content.CopyrightNotice", DateTime.Now.Year.ToString(), "Store name here")
</div>
12 лет назад
Thanks!  It worked.

I'm thinking about upgrading but do not have tools to connect with the database . . .is that necessary?
12 лет назад
Just manually update '/Views/Shared/Footer.cshtml' file

P.S. There were an issue about it in version 2.00. It was fixed in 2.10.
12 лет назад
shsomers wrote:
Thanks!  It worked.

I'm thinking about upgrading but do not have tools to connect with the database . . .is that necessary?


Yes, to upgrade an existing system you need to run the update.sql (installed in version specific sub folder of upgradescripts)

Toad has freeware for SQL server.  I've used other Toad products, not this one, but it should work.
http://www.toadworld.com/Freeware/ToadforSQLServerFreeware/tabid/562/Default.aspx
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.