• Resolved Sa?a

    (@stodorovic)


    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)
  • Plugin Support eugenewhite

    (@eugenewhite)

    Hello there!

    I apologize for the delayed response, but I want to thank you for bringing this issue to our attention. 

    I will definitely pass on this information to our developers for them to consider including this patch in one of the next plugin releases. Thank you! 

    Please let us know if there’s anything else we can help you with.

    Plugin Support eugenewhite

    (@eugenewhite)

    Hello @stodorovic

    I hope you’re doing well. 

    I wanted to let you know that we have successfully implemented the solution you provided for our Timetable plugin. 

    Kindly ensure that you update the plugin to its latest version and let us know if there is anything else we can help you with.

    Have a good one! 

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with Yoast SEO’ is closed to new replies.