Simple Question

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 năm cách đây
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 năm cách đây
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 năm cách đây
Thanks!  It worked.

I'm thinking about upgrading but do not have tools to connect with the database . . .is that necessary?
12 năm cách đây
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 năm cách đây
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.