HUSKY - Product Filter for WooCommerce

リダイレクトモードで商品の先頭に自動スクロール

現在のWordPressテーマのfooter.phpファイルに(子テーマを使用)、次のコードを追加してください:

<?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を持つ任意のコンテナを使用できます…