HUSKY - Products Filter Professional for WooCommerce

重定向模式下自动滚动到产品顶部

在文件 footer.php 您的当前 WordPress 主题 (使用子主题) 添加以下代码:

<?php if (isset($_GET['swoof'])): ?>

    <script>
        jQuery(function ($) {

            setTimeout(function () {
                $('html, body').animate({
                    scrollTop: $(".woof_products_top_panel_content").offset().top - 100
                }, 777);
            }, 333);

        });
    </script>

<?php endif; ?>

 

.woof_products_top_panel_content – 是滚动将完成的容器的 CSS 类。您可以使用任何带有 CSS 类或 id 的容器…