How to Hide OneTap Toolbar in Page Builder Mode (Elementor, Bricks, Oxygen...)
If you’re using OneTap together with a visual page builder like Elementor, BricksBuilder, or Oxygen, you might want to hide the accessibility toolbar while editing — so it doesn’t interfere with the design interface.
Here’s how to hide the OneTap widget inside the builder preview using a simple CSS snippet.
Copy & Paste the CSS for the Builder you use
- WordPress Dashboard
- Design
- Customizer
- Custom CSS
- Copy & Paste the Code
Elementor

/* Elementor Builder */
body.elementor-editor-active .apop-container-toggle {
display: none !important;
}
Bricks Builder

/* Bricks Builder */.bricks-is-editing .onetap-container-toggle {display: none !important;}
Oxygen Builder

/* Oxygen Builder */.oxygen-builder-body .onetap-container-toggle {display: none !important;}
WPBakery

/* WPBakery (Visual Composer) */
body.vc_editor .apop-container-toggle {
display: none !important;
}
Beaver Builder

/* Beaver Builder */
body.fl-builder-edit .apop-container-toggle {
display: none !important;
}
Divi Builder

/* Divi Builder */
body.et-fb .apop-container-toggle {
display: none !important;
}
Thrive Architect

/* Thrive Architect */
body.tve_editor_page .apop-container-toggle {
display: none !important;
}
SiteOrigin Page Builder (Backend Preview)

/* SiteOrigin Page Builder (Backend Preview) */
body.siteorigin-panels-live-editor .apop-container-toggle {
display: none !important;
}
SeedProd Landing Page Builder

/* SeedProd Landing Page Builder */
body.seedprod-builder-active .apop-container-toggle {
display: none !important;
}