Hi!
You can fix it in: /public_html/wp-content/themes/dyad-wpcom/template-parts/content-custom-header.php
Exemple:
From:
if( empty( shell_exec(“which $command”) ) ) {
return false;
}
if( $config[‘debug’] ) {
$start = microtime(true);
}
Change to:
$var = shell_exec(“which $command”) ;
if( empty( $var ) ) {
return false;
}
if( $config[‘debug’] ) {
$start = microtime(true);
}
It will ok.