Notifications
Clear all
Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
26/05/2018 10:48 am
The answer of the developers:
We'll fix this in next version.
For now, I provide you temporarily solution. Put this code in your current active functions.php file:
if (!function_exists('hide_empty_div') && function_exists('wpdiscuz')) {
add_action('wp_footer', 'hide_empty_div');
function hide_empty_div() {
global $post;
$wpd = wpdiscuz();
if ($wpd && !$wpd->helper->isLoadWpdiscuz($post)) {
$css = "<style>#wpdInfo{display:none;}</style>";
echo $css;
}
}
}
BlackBoXz reacted