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.
I do not think so, I’ve tried before.
I’ve seen this error, and edited according to a guide by a certain member will ok. But I can’t remember 🙁