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.

 

White line of about 1cm high bottom page

2 Posts
2 Users
1 Reactions
1,470 Views
(@blackboxz)
Member Customer
Joined: 8 years ago
Posts: 1
Topic starter  

Hello,

Since updating to 5.1.0 I have a 1cm high extra white page at the bottom of the page.

Haha I don't find the words to make this more sense...anyhow...I attach a screenshot.

Hope this can be fixed?

Regards, Eric

Screenshot 2018 05 26 om 01.59.53

   
Quote
(@edward)
Active Member
Joined: 9 years ago
Posts: 16
 

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
ReplyQuote
Share:
Scroll to top