Conflict with Yoast SEO
-
In method action_save (class Controller_Settings ) there is the code which adds message “Settings saved.” on any settings page. It could lead to confusing users, conflicts with some plugins, …
Correct approach is to limit this only when proper setting is called ( page == ‘mptt-settings’ ). Something like this at the begging of the method:
if ( empty( $_GET['page'] ) || wp_unslash( $_GET['page'] ) !== 'mptt-settings' ) {
return;
}Related issue – https://github.com/Yoast/wordpress-seo/issues/20366
Please add this patch in next release.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Conflict with Yoast SEO’ is closed to new replies.