What problem are you seeing in Bricks?
The problem is in the Bricks ‘builder’. Because the builder is loading the page in the canvas, QM is invoked.
#1 There’s actually no reason to have QM loading in the builder.
#2 The QM bar is cutting off the entire very lower portion of the page / builder, where there are buttons that are being obstructed behind the QM bar!
#3 When editing in the builder, one needs to access the entire page. There are buttons and other objects at the VERY bottom of the page that QM bar is covering.
@bernardberry646 You can add this to your wp-config.php file (above the line /* That's all, stop editing! Happy publishing. */ to disable QM in Bricks:
if ( isset( $_GET['bricks'] ) && $_GET['bricks'] === 'run' ) {
define( 'QM_DISABLED', true );
}
@cosm44 My deepest apologies for not responding and thanking you for the snippet, somehow I didn’t see notification! Yes, it does work perfectly, thanks!