WAIT: Media Library not loaded on ClassicPress 2.1

Browser: Chromium 125.0.6422.141 / Firefox Latest
OS: Windows
URL: -
Video: 5.23 MB file on MEGA

Hi, this is my first bug report here. I wanted to let you know that Bricks Builder is not compatible with ClassicPress in version 2.1. However, the issue has been resolved by their team which can be seen in ClassicPress 2.1.0 Release Notes - #21 by timkaye - Release Notes - ClassicPress Forums .

Is it possible that Bricks will be able to fix this in the future?

Thank you.

Hi @mbex ,

Can you please share a temp admin access for us to your website?
We would like to check if there is other way instead of changing Bricks core theme.
By right, that plugin can hook on wp_enqueue_scripts with a priority of maybe 8
Please send it to help@bricksbuilder.io and include this thread URL in the email as a reference.

Regards,
Jenn

I tried it through local development, not through hosting.

Hi @mbex ,

As we are not familiar with the ClassicPress plugin. Could you please set up a publicly accessible site to replicate this issue and send admin access to help@bricksbuilder.io? Please include this thread URL in the email as a reference too.

Thanks.

Regards,
Jenn

I concur. With the following code snippet inserted to ~/includes/setup.php around line 350:

        global $wp_scripts;
		$deps = $wp_scripts->registered['media-views']->deps;
		foreach ( $deps as $key => $dep ) {
			if ( $dep === 'sortable-js' ) {
				unset( $deps[$key] );
				$deps[$key] = 'jquery-ui-sortable';
				ksort( $deps );
				$wp_scripts->registered['media-views']->deps = $deps;
				break;
			}
		}

Bricks 1.11 can run on ClassicPress 2.1.

BTW ClassicPress is not a plugin but a fork of WP without GB.