The content dock is getting stuck below the footer of the home page. It seems to work okay on single blog posts though. And on mobile, won’t go away (perhaps I made it too big?)

View on site at: https://blog.powur.com
The content dock is getting stuck below the footer of the home page. It seems to work okay on single blog posts though. And on mobile, won’t go away (perhaps I made it too big?)

View on site at: https://blog.powur.com
Hi @gmcniel,
Thanks for writing in!
Look like you are using a third-party plugin for the post in home page which is causing the issue.
Please disable the plugin and test, and let us know if that works.
The plugin may outdated or may need upgrade. You can take help from the plugin developer.
Thanks
Disabled all plugins except for Content Dock and Cornerstone and the problem persists.

Any other ideas?
Hello @gmcniel,
I have inspected the page and it seems that the styles of Content Dock were not loaded. Please go to X > Content Dock and make sure that you have enabled the display and styling of the content dock.
And then clear your cache first before testing your site since you have enabled the Endurance page cache in Settings > General.
Hope this helps. Please let us know how it goes.
I followed your instructions and it’s still showing up below the footer (not loading the Content Dock styles)
For clarity, I shot this short video: (watch at 2x speed)
Please help! This is one of the last bugs that I need to fix before I can deliver the site to the client (who is growing impatient) and get paid. #needthemoney 
Hi @gmcniel,
It’s known issue but only happen on a blog page, or archive page, but works okay on other pages. A temporary solution is editing this file \wp-content\plugins\tco-content-dock\functions\enqueue\styles.php through FTP or your hosting’s file manager.
And add this code
// If it's a blog page
if( is_home() ) {
$display = true;
}
before this code area
// If x_content_dock_do_not_show cookie is set, ignore content-dock
if( isset( $_COOKIE['tco_content_dock_do_not_show'] ) ) {
$display = false;
}
Thanks!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.