开发者 |
webzunft
max-bond advancedads |
---|---|
更新时间 | 2021年3月10日 20:07 |
PHP版本: | 5.0 及以上 |
WordPress版本: | 5.7 |
wp_head()
and wp_footer()
functions in header.php and footer.php files.There are several reasons:
wp_head()
and wp_footer()
functions in template. Check header.php and footer.php files of your active theme.Yes, it is possible to fix more than one widget even if they are located in different sidebars.
Check your CSS files for these two instructions:
-webkit-backface-visibility:hidden; -webkit-transform: translate3d(0,0,0);
If found, disable them and see the result.
Go to WP admin area, Appearance -> Fixed Widget Options. Here you can define the top and bottom margins. Set bottom margin value >= footer height. Check the result, please.
If your footer height is changing from page to page it is better to use the Stop ID
option. Here you need to provide the HTML tag ID. The position of that HTML element will determine the margin bottom value. For example, let's take the Twenty Sixteen default theme. The theme's footer container has an id="colophon". In the Stop ID
option I need to enter just the colophon, without any other symbols!
There are two options: Disable Width
and Disable Height
. They works the same way. If the browser window width/height is less then or equals specified value, the plugin is disabled. You can also use the visitor conditions of Advanced Ads to target specific user groups.
q2w3-fixed-widget-sidebar-options
filter for widget options in the frontend.wp_add_inline_script
function is used. WordPress 4.5 required for this fix!Disable MutationObserver
. Use this option only as a backup to restore version 4 behavior!Disable Width
and Disable Height
optionsStop ID
option. Use it when you cannot specify Margin Bottom
value. Solution provided by Julian_Kingman!jQuery(window).load
hook. There should be no problems with other jQuery plugins now!