https://www.361sale.com/1752这个保姆级的教程,你看看
Elementor 无法保存页面时,可以先清除缓存,排查插件冲突,尝试切换默认主题,提升 PHP 内存限制,启用 Elementor 安全模式,查看浏览器控制台报错,并确认插件和 WordPress 均为最新版本。
你可以在 functions.php 中加一段代码,使用 is_product() 和产品 ID 或 slug 判断,只对特定产品页面移除页眉和页脚,例如:
add_action( 'template_redirect', function() {
if ( is_product() && is_single(123) ) {
remove_all_actions( 'woodmart_header' );
remove_all_actions( 'woodmart_footer' );
}
});
这样不会影响其他页面,也比全局隐藏更安全有效。

要么每次都删掉容器背景,要么去elmentor模版去删掉一个容器的模版,去掉背景保持就行了![表情[ciya]-361Sale WordPress Care](https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg)
![表情[ciya]-361Sale WordPress Care](https://www.361sale.com/wp-content/themes/zibll/img/smilies/ciya.gif)
















