Hide Max on Validation page Wordpress back end

Hi,

Is het possible to hide Max on the Validation page in the Wordpress back-end?
I know it is possible to hide it in Cornerstone but it still is visible on the validation page?

Hello @Marco,

Thanks for writing to us.

I would suggest you please add this custom code to the active child theme functions.php file.

function admin_style() {
  if( current_user_can( 'administrator' ) ){
  ?>
  <style type="text/css">
    div#max {
    display: none;
    }
  </style>
  <?php
  } 
}
add_action('admin_enqueue_scripts', 'admin_style'); 

Please note that the code provided above serves as a guide only and is to help you get started so implementing it and maintaining the code will be out of our support scope and further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer or you may subscribe to One where customization questions are answered.

Thanks