white label hiding too much

Locked
User avatar
info@eurhosting.net
KeyHelp Translator
Posts: 45
Joined: Tue 24. May 2016, 15:17
Location: Brno
Contact:

white label hiding too much

Post 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?
Stop stop stop
If hosting is not your main focus, I can be of help to mantain your servers
User avatar
Martin
Posts: 984
Joined: Wed 20. Jan 2016, 00:43

Re: white label hiding too much

Post by Martin »

Hello,

when you click on "SSL", the menu entry for "SSL for Services" is missing (grey button)?
Viele Grüße,
Martin
User avatar
Alexander
Keyweb AG
Posts: 3842
Joined: Wed 20. Jan 2016, 02:23

Re: white label hiding too much

Post 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.
Attachments
Bildschirmfoto_2017-01-31_14-33-55.png
Mit freundlichen Grüßen / Best regards
Alexander Mahr

**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
User avatar
info@eurhosting.net
KeyHelp Translator
Posts: 45
Joined: Tue 24. May 2016, 15:17
Location: Brno
Contact:

Re: white label hiding too much

Post 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
Stop stop stop
If hosting is not your main focus, I can be of help to mantain your servers
User avatar
Alexander
Keyweb AG
Posts: 3842
Joined: Wed 20. Jan 2016, 02:23

Re: white label hiding too much

Post 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?
Mit freundlichen Grüßen / Best regards
Alexander Mahr

**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
User avatar
info@eurhosting.net
KeyHelp Translator
Posts: 45
Joined: Tue 24. May 2016, 15:17
Location: Brno
Contact:

Re: white label hiding too much

Post 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?
Stop stop stop
If hosting is not your main focus, I can be of help to mantain your servers
Locked