The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Comment Bubble Hidd...
 
Share:
Notifications
Clear all

Question [Solved] Comment Bubble Hidden By Footer Ad on Desktop and Mobile

18 Posts
2 Users
2 Likes
589 Views
Posts: 28
Topic starter
(@rklement)
Eminent Member
Joined: 7 months ago

Hi I have a problem with advertising cutting off the comment bubble. I read this postΒ  https://wpdiscuz.com/community/troubleshooting/comment-bubble-hidden-by-footer-ad-on-mobile/ but the CSS code did not work for me.

2023 10 09 16 00 50 Window

Β 

17 Replies
Posts: 129
Support
(@jacob)
Estimable Member
Joined: 9 years ago

Hi @rklement,
Can you please leave a URL to allow us to check the issue?

1 Reply
(@rklement)
Joined: 7 months ago

Eminent Member
Posts: 28

@jacob Yes, of course, it is this ( https://bit.ly/45qtHPB). I use a shortener to protect my site. For the moment I only activate the comments in that post to test the plugin. You will notice that both desktop and mobile advertising below cuts the icon.

Posts: 28
Topic starter
(@rklement)
Eminent Member
Joined: 7 months ago

Hello. Please check πŸ™‚

Posts: 129
Support
(@jacob)
Estimable Member
Joined: 9 years ago

Hi @rklement,

Β Put the code in the "Custom CSS code" textarea, located in theΒ Dashboard > wpDiscuz > Settings > Styles & ColorsΒ admin page.Β 
#wpd-bubble-wrapper {
   z-index: 999999!important;
}

Don't forget to delete the caches before checking.

Posts: 28
Topic starter
(@rklement)
Eminent Member
Joined: 7 months ago

Now in desktop it is perfect, but in mobile it should go a little higher. Is it possible to position it even higher?

On the other hand after applying this code now it looks like this wpDiscuz.

2023 10 11 20 51 22 Window

I have already cleared the cache and entered incognito mode with Chrome and Firefox.

Thank you.

Posts: 28
Topic starter
(@rklement)
Eminent Member
Joined: 7 months ago

Apparently it looks good now, can you confirm this?
On the other hand I would like to raise the bubble even more, is it possible?

Posts: 129
Support
(@jacob)
Estimable Member
Joined: 9 years ago

Hi @rklement,

Add this CSS code to the textarea I've mentioned above

#wpd-bubble-wrapper {
   z-index: 999999!important;
   bottom: 100px;
}
2 Replies
(@rklement)
Joined: 7 months ago

Eminent Member
Posts: 28

@jacob I'll try it. How can I activate bulk comments on my other 600 posts?

Thank you.Β 

Support
(@jacob)
Joined: 9 years ago

Estimable Member
Posts: 129

@rklement You can try to use this hook

add_filter('comments_open', function($is_open, $post_id) {
  $post = get_post($post_id);
  if ($post && (get_post_type($post) === 'post')) { // whatever you want to check  
      $is_open = true;
  }
  return $is_open;
}, 10, 2);
Page 1 / 2
Share: