Login as editor user

Hello, I'm Japanese.

The image is logged in as the editor user "editor".
WS000023

  1. Please tell me how to change "pulse CMS" on the tab.
  2. Can I hide the logo?
  3. How can I hide the "Help" menu?
  4. Is there a way to edit and delete "dashboard notes"?
1 Like

Thanks @masaki

  1. That's in the language files.
    Admin > inc > lang > Japanese.php
    L12
    $lang_title = "Pulse CMS";

  2. You can change it by swapping the image in Media > Branding > logo.svg

Or hide it using CSS - add to the bottom of the CSS stylesheet:
admin > CSS > admin.css

something like:

header .cd-logo {display: none;}

  1. As above in Japanese.php you can change the URL of L7:
    $lang_help_url ="https://www.pulsecms.com/help";

This could be to your email address using a "mailto:" link
or if you want to remove it completely..

L277 of admin > index.php
remove this line:

<li><a href="<?php echo $lang_help_url;?>" target="_blank"><i class="fa fa-info-circle"></i><?php echo $lang_help;?></a></li>

  1. You can edit Dashboard Notes content here:

Deleting the Block will also remove it from the dashboard


Hope that helps! :star_struck:

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.