The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Question [Solved] Comment Bubble Hidden By Footer Ad on Desktop and Mobile
How-to and Troubleshooting
(@jacob)
Estimable Member
Joined: 10 years ago
Hi @rklement, Can you please leave a URL to allow us to check the issue?
(@rklement)
Joined: 2 years ago
Eminent Member
Posts: 28
Oct 09, 2023 6:38 pm
@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.
(@rklement)
Eminent Member
Joined: 2 years ago
(@jacob)
Estimable Member
Joined: 10 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.
(@rklement)
Eminent Member
Joined: 2 years 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.
I have already cleared the cache and entered incognito mode with Chrome and Firefox.
Thank you.
(@rklement)
Eminent Member
Joined: 2 years 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?
(@jacob)
Estimable Member
Joined: 10 years ago
Hi @rklement ,
Add this CSS code to the textarea I've mentioned above
#wpd-bubble-wrapper {
z-index: 999999!important;
bottom: 100px;
}
(@rklement)
Joined: 2 years ago
Eminent Member
Posts: 28
Oct 12, 2023 5:34 pm
@jacob I'll try it. How can I activate bulk comments on my other 600 posts?
Thank you.
(@jacob)
Joined: 10 years ago
Estimable Member
Posts: 132
Oct 12, 2023 6:26 pm
@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);