"storefront-handheld-footer-bar" 使用子主题 WooCommerce 时缺失

"storefront-handheld-footer-bar" missing when using child theme WooCommerce

我在 Wordpress 中构建的网站遇到了一个奇怪的问题。

我正在使用带有自定义子主题的 WooCommerce Storefront 主题。

出于某种原因,在移动设备上,页面底部缺少固定元素“storefront-handheld-footer-bar”。

到目前为止,我已经做了以下尝试来找出问题所在:

这是一个link to the website

我原本希望今天发布,但这在工作中遇到了麻烦!

我不确定从这里该何去何从,所以我真的想看看是否有人遇到过同样的问题,以及他们是否有我可以尝试的潜在解决方案。如有任何帮助,我们将不胜感激!

我认为您自定义了页脚并删除了一些店面的操作调用

这里是原码

    <footer id="colophon" class="site-footer" role="contentinfo">
        <div class="col-full">

            <?php
            /**
             * Functions hooked in to storefront_footer action
             *
             * @hooked storefront_footer_widgets - 10
             * @hooked storefront_credit         - 20
             */
            do_action( 'storefront_footer' );
            ?>

        </div><!-- .col-full -->
    </footer><!-- #colophon -->

页脚栏是从storefront_footer动作中调用的,这里是钩子

add_action( 'storefront_footer', 'storefront_handheld_footer_bar', 999 );

因此,您的选择是调用 do_action('storefront_footer) 或在页脚某处手动调用 storefront_handheld_footer_bar() 函数。