Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1319973
    Pbalazs89
    Participant

    Hi there,

    I’m building a multilingual website at http://biokutatas.decorolux.com/

    I have the search bar enabled in the navbar. However I would like to know how I would be able to translate it to Hungarian.

    Thanks!

    #1319982
    Thai
    Moderator

    Hi There,

    Please add the following code under functions.php file locates in your child theme:

    add_filter('gettext', 'x_translate_text' , 20, 3);
    function x_translate_text ( $translated_text, $text, $domain ) {
    	$translation = array (
    		'Type and Press “enter” to Search' => 'Your text will go here',
    	);
    
    	if( isset( $translation[$text] ) ) {
    		return $translation[$text];
    	}
    	return $translated_text;
    }

    Hope it helps 🙂

  • <script> jQuery(function($){ $("#no-reply-1319973 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>