Okay
  Public Ticket #1727966
How do we hide license key from our client?
Closed

Comments

  • Sterling started the conversation

    Building my first Sonaar client site but don't think they should see that activation code/license key... how can I hide it?

    #SONAARROCKS!


  •  1,104
    Max replied

    Hi Sterling,


    Umm, the only way I can think of is to add this in your theme's function.php:

    add_action('admin_head', 'my_custom_css');

    function my_custom_css() {
      echo '<style>
        .wp-admin .iron-docs .jumbotron {
        display: none!important;

      </style>';
    }

     Thanks

    Thanks,


    Max from the Sonaar.io Crew