In beautiful-yahoo-weather/inc/shortcode.php
Replace
$jsonStr = file_get_contents($url);
With
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$jsonStr = curl_exec($ch);
curl_close($ch);
It ‘s worked to my website. Hope to help you !