Join 50,000+ Smart Business Owners using OneTap for better accessibility with 1-Click Installation

CSS

Hide "Powered by OneTap"

CSS

Hide "Languages Selection"

JS

Hide OneTap for logged out Users

PHP

Futurio Theme Mobile

CSS

Futurio Theme Mobile

				
					function onetap_fix_futurio_theme_css() {
    // Prüfen, ob das Futurio-Theme aktiv ist
    $current_theme = wp_get_theme();
    if ( 'Futurio' === $current_theme->get( 'Name' ) ) {
        // Füge das zusätzliche CSS hinzu
        wp_add_inline_style( 'onetap-plugin-css', '
            @media (max-width: 767px) {
                .page-area {
                    transform: none !important;
                    -webkit-transform: none !important;
                }
            }
        ' );
    }
}
add_action( 'wp_enqueue_scripts', 'onetap_fix_futurio_theme_css' );

				
			
TOP