• Resolved benlvt

    (@benlvt)


    Hi, your last update totally messed up my website because of this function (1240 in RTMedia.php) :

    public function wp67_compatibility_scripts() {
    global $wp_version;

    // Enqueue jQuery Migrate for WordPress 6.7+ compatibility
    if ( version_compare( $wp_version, '6.7', '>=' ) ) {
    if ( ! wp_script_is( 'jquery-migrate', 'enqueued' ) ) {
    wp_enqueue_script( 'jquery-migrate' );
    }
    }
    }

    If I patch it like this then it’s ok :

    public function wp67_compatibility_scripts() {
    global $wp_version;

    // Enqueue jQuery Migrate for WordPress 6.7+ compatibility
    if ( version_compare( $wp_version, '6.7', '>=' ) ) {
    if ( wp_script_is('jquery', 'enqueued') && !wp_script_is('jquery-migrate', 'enqueued') ) {
    wp_enqueue_script( 'jquery-migrate' );
    }
    }
    }

    Please be careful next time, it made me lost a bunch of money as people couldn’t suscribe to my services anymore and it took me a while to find the reason.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor krishana79

    (@krishana79)

    Hi @benlvt ,

    Thank you for reporting this and sharing the patch. We sincerely apologize for the disruption this caused to your site and business. We understand how serious it is when functionality breaks, and we’ll make sure this fix is included in the next release so others don’t run into the same issue.

    Your feedback is greatly appreciated.

    — Krishana

    Plugin Contributor krishana79

    (@krishana79)

    Hi @benlvt

    We have fixed the issue you were facing in the last release of the rtMedia Plugin.
    Please update the plugin from the dashboard or get the zip from here.

    We hope this resolves the issue you were facing. Thank you for bringing this to our attention.

    — Krishana

    Thread Starter benlvt

    (@benlvt)

    Hi @krishana79,

    Thanks for your quick feedback, everything is ok now.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.