serach

Hello,

I would like to change “search” into my language “szukaj”. How can I make this?

The same with “No comments yet” (or can I remove it?), “Posted on…”.

Kasia :slight_smile:

Hi Kasia,

I hope you are well today and thank you for your question.

You can try changing it by translating the theme in to your language “szukaj” as described on the following page.

The same with “No comments yet” (or can I remove it?),

Yes you can remove it by using the solution posted in the following topic.

https://colorlibsupport.com/t/remove-no-comments-yet/

Best Regards,
Movin

Hi,

thank you very much!

Now I have problem only with “No comments yet” because there is no this expression to translate.

When I removed it as a result there is no information also when there is a comment :frowning:

You can try translating its by using the attached small plugin specially developed for you that contains following custom code.

function colorlib_change_translate_text( $translated_text, $text, $domain ) {
	if ( $domain == 'activello' && trim($translated_text) == 'No comments yet' ) {
		$translated_text = 'Brak komentarzy';
	}
	return $translated_text;
}
add_filter( 'gettext', 'colorlib_change_translate_text', 20, 3 );

You are grat!!! Thank you very much!

You are most welcome here :slight_smile: