X Theme demo content images missing

Hi, I’ve downloaded some demo content from X theme but the images are missing…seems to only be the ‘APP’ extended demo that won’t load properly. I’ve just downloaded the ‘GYM’ extended demo content and all is fine with that one. I really want/need to use the ‘APP’ extended demo content though (just my luck that’s the one that won’t work)…is there somewhere else I can just download the ‘APP’ demo images and just insert them into my media folder? Thanks.

Hi David,

Thanks for writing in! Your issue should be related to cURL timeout. Could you please try adding the following code into your child theme’s functions.php file and then try re-generating your app demo content. If you don’t have a child theme setup yet, please refer (https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57).

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 );
}

Let us know how it goes.
Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.