How to change "nopCommerce Administration" from page title in Admin Backend?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
In nopCommerce 3.50 when you enter the Administration Menu the page title incorporates nopCommerce Administration after the menu function.

For example, selecting Administration --> Sales --> Orders gives a page title in the browser tab of "orders / nopCommerce administration".

I would like to change that to only have "/ administration" appended.

Is that possible by configuration or is that a code change?
9 years ago
You can go into your administration/views/order/list.cshtml and on about line 5 or 6 you will see this:

    //page title
    ViewBag.Title = T("Admin.Orders").Text;

I'm guessing, but you could probably change it like so:

    //page title
    ViewBag.Title ="Orders";
9 years ago
Actually...that might work for that particular page title in admin...but here's how to really do it simply on all admin pages:

Go to Administration >> Configuration >> Languages >> View string resources >> in the value column, paste this:
nopCommerce administration
And leave it on "Contains" >> click FILTER

Then just edit the value returned to whatever you want (administration) and click update
9 years ago
That works a treat !!!!  Many thanks !
7 years ago
embryo wrote:
Actually...that might work for that particular page title in admin...but here's how to really do it simply on all admin pages:

Go to Administration >> Configuration >> Languages >> View string resources >> in the value column, paste this:
nopCommerce administration
And leave it on "Contains" >> click FILTER

Then just edit the value returned to whatever you want (administration) and click update


Thanks, worked like a charm!
7 years ago
embryo wrote:
Actually...that might work for that particular page title in admin...but here's how to really do it simply on all admin pages:

Go to Administration >> Configuration >> Languages >> View string resources >> in the value column, paste this:
nopCommerce administration
And leave it on "Contains" >> click FILTER

Then just edit the value returned to whatever you want (administration) and click update


Thank you! Worked really well
5 years ago
Thanks for this answer


embryo wrote:
Actually...that might work for that particular page title in admin...but here's how to really do it simply on all admin pages:

Go to Administration >> Configuration >> Languages >> View string resources >> in the value column, paste this:
nopCommerce administration
And leave it on "Contains" >> click FILTER

Then just edit the value returned to whatever you want (administration) and click update
3 years ago
embryo wrote:
Actually...that might work for that particular page title in admin...but here's how to really do it simply on all admin pages:

Go to Administration >> Configuration >> Languages >> View string resources >> in the value column, paste this:
nopCommerce administration
And leave it on "Contains" >> click FILTER

Then just edit the value returned to whatever you want (administration) and click update


I have followed your instruction today for nopcommerce 4.20 after that I am unable to login my admin area.

Please advise me how to fix it.

Advance thanks for expert community.

Thank you for your patience.

Showing error:
We're sorry, an internal error occurred.

Our supporting staff has been notified of this error and will address the issue shortly.

We apologize for the inconvenience.

Please try clicking your browsers 'back' button or try reloading the home page.

If you continue to receive this message, please try again in a little while.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.