- 状态
- 已由作者解决
- 相关插件/主题
- Avada
- 主题标签
- Compatibility
问题概述
如果您使用的是 Avada 主题,您在翻译 Portfolio 文章时可能会遇到问题。文章翻译将显示加载图标,并且您会在调试信息中发现类似错误:
Call to a member function get_cart_contents_count() on null .../wp-content/themes/Avada/includes/avada-functions.php:662
临时解决方法
请在继续操作前确保对站点进行了完整备份。
- 打开 …/wp-content/themes/Avada/includes/avada-functions.php 文件。
- 将:
function fusion_add_woo_cart_to_widget_html() { $items = ''; if ( class_exists( 'WooCommerce' ) && ! is_admin() ) { - 替换为:
function fusion_add_woo_cart_to_widget_html() { $items = ''; if ( class_exists( 'WooCommerce' ) && ! is_admin() && ! ( defined( 'REST_REQUEST' ) && REST_REQUEST ) ) {