• Resolved bernardberry646

    (@bernardberry646)


    @johnbillion
    You have this for Elementor while in builder:
    if ( isset( $_GET['action'] ) && $_GET['action'] === 'elementor' ) {
    define( 'QM_DISABLED', true );
    }

    REALLY need to disable QM for Bricks builder (replacing elementor with bricks does not work)… how?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author John Blackbourn

    (@johnbillion)

    WordPress Core Developer

    What problem are you seeing in Bricks?

    Thread Starter bernardberry646

    (@bernardberry646)

    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 );
    }
    Thread Starter bernardberry646

    (@bernardberry646)

    @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!

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

The topic ‘Disable in Bricks Builder’ is closed to new replies.