リダイレクトモードで製品の上部へ自動スクロール
ファイル内 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を持つ任意のコンテナを使用できます…