Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Milind More

    (@milindmore22)

    Hello @albertikus90

    Thank you for contacting us, Please use the following code snippet in your child themes functions.php or in a custom plugin

    add_filter( 'gettext_amp', function( $translation, $text, $domain ) {
    
    	if ( 'amp' !== $domain ) {
    		return $translation;
    	}
    
    	if ( 'Exit mobile version' === $text ) {
    		return 'Mobile Ansicht verlassen';
    	}
    
    	return $translation;
    }, 10, 3 );
    

    We hope this helps!

    Plugin Support Milind More

    (@milindmore22)

    @albertikus90 As we didn’t receive a response I’ll mark this as resolved. Feel free to open a new support topic if you require any further assistance.

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

The topic ‘Translate “quit mobile Version”’ is closed to new replies.