Resolved
Reported for: WPML Multilingual CMS 4.6.3
Overview of the issue
When editing a multilingual course created with LearnDash, Beaver Builder, and WPML, the following error occurs: “Beaver Builder has detected a plugin conflict that is preventing the page from saving.”
This issue appears only when the Shared Course Steps – Lessons, topics and quizzes can be shared across multiple courses option is active.
Workaround
Please, be sure to make a full backup of your site before proceeding.
- Open your theme’s functions.php file
- Add the following code:
123456
add_filter(
'wpml_is_redirected'
,
function
(
$redirect
) {
if
(
strpos
(
$_SERVER
[
'REQUEST_URI'
],
'fl_builder'
) !== false ) {
return
false;
}
return
$redirect
;
} );