2014-09-01, 18:15:26
try to do it with a simple if
PHP Code:
<?php
$content = 'your content or something what You want to show';
if ($content != ''){
echo '<div>'. $content . '</div>';
}
?>
user plugin: scroll to top