Page 1 of 1

white label hiding too much

Posted: Tue 31. Jan 2017, 13:43
by info@eurhosting.net
Hello

I use this javascript to hide the section "news, changelog and whitelabel" from panel

Code: Select all

$('document').ready( function () {
   
   var url      = window.location.href;

     // il link whitelabel lo nascondo da tutte le pagine
     $(".sidebar ul li a:contains('White Label')").closest('li').hide();
     $(".sidebar ul li a:contains('Брендирование')").closest('li').hide();
     $(".sidebar ul li a:contains('Whitelabel')").closest('li').hide();
  

   if (url.indexOf("admin_index") >= 0)
   {
      // remove news 
      $("div.content th:contains('News')").closest('div').remove();
      $("div.content th:contains('новости')").closest('div').remove();
      
      
      // rimuovo link changelog
      $("div.content a:contains('See history of changes')").remove();
      $("div.content a:contains('Änderungsprotokoll anzeigen')").remove();
      $("div.content a:contains('История изменений')").remove();
   }
      
});
It seems to work too well because is hiding even let's encrypt in SSL section.
Any idea how to solve it?

Re: white label hiding too much

Posted: Tue 31. Jan 2017, 14:33
by Martin
Hello,

when you click on "SSL", the menu entry for "SSL for Services" is missing (grey button)?

Re: white label hiding too much

Posted: Tue 31. Jan 2017, 14:46
by Alexander
Hello,

are you looking for a way to enable Let's Encrypt certificate for the panel domain?

I have checked your white label settings now and they seem okay, i am still able to change the Let's Encrypt setting.

Maybe you have problems to find the "Enable-Let's Encrypt-Button" (It's not labeled that way ;) )? - For clarification, I attached you this screenshot.
Click on 'Define certificates for server services'-Button (top left) and than on the drop down of the corresponding service you want to protect with Let's Encrypt. The last entry in the drop down list is always Let's Encrypt.

If you still have problems to activate Lets Encrypt, don't hesitate to ask again.

Re: white label hiding too much

Posted: Thu 2. Feb 2017, 22:08
by info@eurhosting.net
Hello.

Got how to manage the let's encrypt for the host now, thank you.

But still, for example, with whitelabel I don't have vision of firewall and mail queue

Re: white label hiding too much

Posted: Thu 2. Feb 2017, 23:42
by Alexander
Hello,

The screenshot was taken on my development server. Firewall is an upcoming feature, so it's normal you can't see it now.

Is the JavaScript code you posted above the only change inside the white label settings? Because with this code you should see the email queue menu item. You are running KeyHelp 14.7.2? Have you additional CSS rules defined inside white label settings?

Re: white label hiding too much

Posted: Fri 3. Feb 2017, 16:38
by info@eurhosting.net
That javascript is the only code I have on the whitelabel, correct, and again correct, just checked, I can see the mail queue.

Talking of feature upcoming... I opened a post about restore from backup... is in the roadmap?