Okay
  Print

Hi, The twitter plugin is not working. It shows "" instead of actual tweets

If plugin is not working, try update file_get_contents to curl get.

To do that, edit file clapat/class.shortcode.php
replace
$content = @json_decode(@file_get_contents($apiURL));
with:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);  
$content = @json_decode($output); unset($output);