Hi there,
we just imported a new demo of Food truck via design cloud to fresh wordpress installation. Unfortunately images are not showing. We added to our child theme - functions.php following code:
add_filter(‘http_request_args’, ‘bal_http_request_args’, 100, 1);
function bal_http_request_args($r) //called on line 237
{
$r[‘timeout’] = 15;
return $r;
}
add_action(‘http_api_curl’, ‘bal_http_api_curl’, 100, 1);
function bal_http_api_curl($handle) //called on line 1315
{
curl_setopt( $handle, CURLOPT_CONNECTTIMEOUT, 15 );
curl_setopt( $handle, CURLOPT_TIMEOUT, 15 );
}.
It didn’t help so please can you help.
Thanks a lot
Michael
