By default, the OneTap toolbar is displayed on every page load — this also includes the print view of your website. If you prefer to hide the toolbar when printing a page, you can do so with a simple CSS rule.
Solution
Add the following CSS to your theme’s Additional CSS (via the WordPress Customizer) or to your child theme stylesheet:
/* Hide OneTap/Overlay when printing */
@media print {
.apop-accessibility,
.apop-plugin-onetap,
.apop-accessibility * {
display: none !important;
visibility: hidden !important;
}
/* In case a print overlay causes issues: */
.apop-overlay,
.apop-backdrop {
display: none !important;
}
/* General: hide fixed UI elements when printing */
.sticky, .fixed, [style*="position: fixed"] {
display: none !important;
}
}