Hello.very
Sorry for the (very) late reply, I don’t check these forums as often as I check my mail, so for future reference if you need help, please don’t hestitate to contact me directly.
yes, this is possible already, but it requires some knowledge of PHP and HTML.
switch this around, tweak it to your needs, and put it in functions.php
Something like this could possibly achieve what you’re requesting.
add_filter("atr_server_success_message", function($message, $server) {
$html = "<br><small>Hostname: ".$server->hostname."</small><br>"
." appears to be working alright.";
return $html;
}, 10, 2);
The $server variable contains all available information about the server, as entered in wp-admin, inspect this with print_r(); or var_dump(); if you need to see what it contains.
Kind Regards
Allan