- 状态
- 未解决
- 报告针对
- WPML Multilingual CMS 4.6.8
- 相关插件/主题
- The Events Calendar
- 主题标签
- Compatibility
问题概述
如果您将 The Events Calendar 与 WPML 结合使用,重复事件实例的链接会错误地指向首次发生的事件。
临时解决方法
继续操作前,请确保对您的站点进行完整备份。
选项 1
- 前往 WPML > 设置 > 文章类型翻译部分。
- 将您的页面设置为可翻译 – 仅显示已翻译的项目
选项 2
- 打开主题的 functions.php 文件。
- 添加以下代码:
add_filter ('the_content', 'remove_wpml_filter', 98, 1); function remove_wpml_filter($content) { global $wp_filter; foreach ($wp_filter["the_content"]->callbacks[99] as $key => $value) { if(str_contains($key, 'fix_fallback_links')){ remove_filter( 'the_content', $key, 99 ); } } return $content; }