"storefront-handheld-footer-bar" 使用子主题 WooCommerce 时缺失
"storefront-handheld-footer-bar" missing when using child theme WooCommerce
我在 Wordpress 中构建的网站遇到了一个奇怪的问题。
我正在使用带有自定义子主题的 WooCommerce Storefront 主题。
出于某种原因,在移动设备上,页面底部缺少固定元素“storefront-handheld-footer-bar”。
到目前为止,我已经做了以下尝试来找出问题所在:
- 查看我的 CSS 中是否有任何东西可能隐藏了它,没有
似乎有什么隐藏它
- 检查我没有在子主题功能文件中禁用
- 检查了源代码以查看它是否真的在渲染,它确实是;t
- 激活了父主题 Storefront,这显示了页脚栏,但是
显然不能解决我的问题。
- 在网上搜索了一下,好像没有
在任何地方修复。
我原本希望今天发布,但这在工作中遇到了麻烦!
我不确定从这里该何去何从,所以我真的想看看是否有人遇到过同样的问题,以及他们是否有我可以尝试的潜在解决方案。如有任何帮助,我们将不胜感激!
我认为您自定义了页脚并删除了一些店面的操作调用
这里是原码
<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()
函数。
我在 Wordpress 中构建的网站遇到了一个奇怪的问题。
我正在使用带有自定义子主题的 WooCommerce Storefront 主题。
出于某种原因,在移动设备上,页面底部缺少固定元素“storefront-handheld-footer-bar”。
到目前为止,我已经做了以下尝试来找出问题所在:
- 查看我的 CSS 中是否有任何东西可能隐藏了它,没有 似乎有什么隐藏它
- 检查我没有在子主题功能文件中禁用
- 检查了源代码以查看它是否真的在渲染,它确实是;t
- 激活了父主题 Storefront,这显示了页脚栏,但是 显然不能解决我的问题。
- 在网上搜索了一下,好像没有 在任何地方修复。
我原本希望今天发布,但这在工作中遇到了麻烦!
我不确定从这里该何去何从,所以我真的想看看是否有人遇到过同样的问题,以及他们是否有我可以尝试的潜在解决方案。如有任何帮助,我们将不胜感激!
我认为您自定义了页脚并删除了一些店面的操作调用
这里是原码
<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()
函数。