Jump to content

How To Change Backoffice Page Titles


Recommended Posts

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

<title>{$meta_title} - PrestaShop™</title>

 

This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want

  • Like 2
Link to comment
Share on other sites

  • 3 months later...
  • 9 months later...

open file:

 

/ADMIN_DIR/themes/default/template/controllers/login/content.tpl

 

there is a code like:

		<h1 class="text-center">
			<img id="logo" width="40px" src="{$img_dir}icon-prestashop.svg"/>
			PRESTASHOP
		</h1>

+ social networks

	<div id="login-footer">
		<p class="text-center text-muted">
			<a href="http://www.prestashop.com/" onclick="return !window.open(this.href);">
				© PrestaShop™ 2007-{$smarty.now|date_format:"%Y"} - All rights reserved
			</a>
		</p>
		<p class="text-center">
			<a class="link-social link-twitter" href="https://twitter.com/PrestaShop" target="_blank" title="Twitter">
				<i class="icon-twitter"></i>
			</a>
			<a class="link-social link-facebook" href="https://www.facebook.com/prestashop" target="_blank" title="Facebook">
				<i class="icon-facebook"></i>
			</a>
			<a class="link-social link-github" href="https://github.com/PrestaShop/PrestaShop/" target="_blank" title="Github">
				<i class="icon-github"></i>
			</a>
			<a class="link-social link-google" href="https://plus.google.com/+prestashop/" target="_blank" title="Google">
				<i class="icon-google-plus"></i>
			</a>
		</p>
	</div>

just modify it as you want :-)

Link to comment
Share on other sites

  • 4 months later...

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

<title>{$meta_title} - PrestaShop™</title>
This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want

 

how to do the same for Prestashop 1.6 ? want to replace prestashop with some Text.

Link to comment
Share on other sites

i just missed fact tat we are dealing here with BACK OFFICE not front office :\

themes/default/template/controllers/login/header.tpl

remove:
 

(PrestaShop™) 

from:

		<title>
			{$shop_name} {if $meta_title != ''}{if isset($navigationPipe)}{$navigationPipe|escape:'html':'UTF-8'}{else}>{/if} {$meta_title}{/if} (PrestaShop™)
		</title>
  • Like 1
Link to comment
Share on other sites

 

i just missed fact tat we are dealing here with BACK OFFICE not front office :\

themes/default/template/controllers/login/header.tpl

remove:

 

(PrestaShop™) 

from:

		<title>
			{$shop_name} {if $meta_title != ''}{if isset($navigationPipe)}{$navigationPipe|escape:'html':'UTF-8'}{else}>{/if} {$meta_title}{/if} (PrestaShop™)
		</title>

Thanks Vekia, you are God for prestashop.

Link to comment
Share on other sites

  • 7 months later...
  • 2 months later...

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

 

<title>{$meta_title} - PrestaShop™</title>
This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want
Link to comment
Share on other sites

  • 3 weeks later...

admin-theme.css line 4

body {
    font: 400 12px/1.42857 "Open Sans",Helvetica,Arial,sans-serif;
    color: #555;
    background-color: #EFF1F2;
    -webkit-tap-highlight-color: transparent;
}

change backgrund-color param to any other color you want

Link to comment
Share on other sites

  • 4 months later...

Hi,

 

I am having the same issue in regards of removing the trademark from the dashboard's header. I am using version 1.6.1.4 and would like to replace that with another text.. Could someone help please

 

Kind regards

Link to comment
Share on other sites

  • 2 months later...

although the solutions here provided do work, THEY ARE NOT THE PROPER WAY TO MODIFY YOUR FILES!

 

if you pay attention, on every file you'll see a notice:

 

* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.

 

this means that yes, you're free to modify your files, but next time you upgrade PrestaShop you'll either loose your changes or things will break.

 

 

i've been unable so far to find a proper way to modify ROOT/adminXXX/themes/default/template/header.tpl

 

but i have successfully modified:

- ROOT/adminXXX/themes/default/template/controllers/login/content.tpl

 

by adding the modifications to

- ROOT/override/controllers/admin/templates/login/content.tpl

 

(this seems to work for all .tpl files in admin's default/template/controllers subdirectories)

 

and apply CSS changes by adding my style declarations to:

- ROOT/adminXXX/themes/default/css/overrides.css

 

 

does anyone know of the PROPER way to apply changes to ROOT/adminXXX/themes/default/template/header.tpl ?

Link to comment
Share on other sites

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

<title>{$meta_title} - PrestaShop™</title>
This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want

 

 

Please Help Me 

How can i remove/replace this icon from admin panel?

See image

Link to comment
Share on other sites

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

<title>{$meta_title} - PrestaShop™</title>

This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want

 

 

 

Please Help Me 

How can i remove/replace this icon from admin panel?

See image

Attached Thumbnails
  • post-1126972-0-13719000-1460374597_thumb

 

Link to comment
Share on other sites

 

ok, thanks for information, so in this case you have:

 

1) open admin/themes/default/template/header.tpl file

2) in line ~34 you've got probably something like this:

 

<title>{$meta_title} - PrestaShop™</title>

This is the title of your admin pages, just remove the "- PrestaShop™" you can also put there anything you want

 

 

 

Please Help Me 

How can i remove/replace this icon from admin panel?

See image

Attached Thumbnails
  • post-1126972-0-13719000-1460374597_thumb

Unable to find this code <title>{$meta_title} - PrestaShop™</title> tp prestashop version 1.6.1.4

 

Link to comment
Share on other sites

@ibrstore

 

that icon is added via CSS, in this file:

 

ADMIN/themes/default/css/admin-theme.css

 

at line 4:

#header_shopversion {
    background: rgba(0, 0, 0, 0) url("../img/prestashop-avatar-header_shopname.png") no-repeat scroll left top / auto 36px;
    font-size: 1.3em !important;
    height: 36px;
    margin: 0 5px 0 0;
    padding-left: 140px !important;
    position: relative;
}

i know that much, and it'd be easy to replace it (just upload your own icon in ADMIN/themes/default/img/prestashop-avatar-header_shopname.png and change the CSS accordingly), but i'm not sure it's the proper way to do it, since you're not supposed to modify the original files that way, or else next time you won't be able to upgrade.

 

i've been asking exactly how one is supposed to modify the header template, but so far no one has replied. sorry.

 

one thing you could do is to change whatever you need manually and keep track of the changes - for instance, create a backup version of the file you're changing, so that before you upgrade you can put things back the way they were and reapply the changes afterwards.

 

 

 

Link to comment
Share on other sites

  • 10 months later...
  • 2 months later...
  • 1 year later...

Hello everyone,

modifying the file admin\themes\default\template\header.tpl

similar to what is explained here 

 

I deleted the display of quick-access and search-bar because they created problems with employees.
The problem is that now, as in the image below, the icons "view my shop", "notifications" and "account" have all moved to the left.

image.png.d8ee68676719894b8cb41ebbfa03563d.png

 

Would anyone please kindly tell me how I can move them all to the right?

My PS version is 1.7.5. 

Link to comment
Share on other sites

  • 1 month later...
On 5/20/2019 at 5:57 PM, Eduardo Carcur said:

Hello, have version 1,7, can I ask how to change "featured, best sellers, lastest and specials" for my own titles ??

You can change titles from translations, from Backoffice go to

International-> Translations->

In the "Modify translations" tab

set:

Type of translation: theme transaltions
Select your theme: classic (or else if you use another)
Select your language: (the language you use, if you use multiple languages you must repeat it for each language)

click on modify

You find what you were looking for already in the left column, or you can help you search for the terms with the search bar at the top.

I hope it helps.

----------------------------

 

On 5/17/2019 at 5:11 PM, shon said:

Hello everyone,

modifying the file admin\themes\default\template\header.tpl

similar to what is explained here 

 

I deleted the display of quick-access and search-bar because they created problems with employees.
The problem is that now, as in the image below, the icons "view my shop", "notifications" and "account" have all moved to the left.

image.png.d8ee68676719894b8cb41ebbfa03563d.png

 

Would anyone please kindly tell me how I can move them all to the right?

My PS version is 1.7.5. 

No one knows how to help me on this? Please.

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...