Changing the name of element

How to change the name of the element on the screenshot http://prntscr.com/csflxg

Hi @vladseo11196,

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

You can change the text of read more button by using the attached small plugin that contains the following code.

function colorlib_change_translate_text( $translated_text, $text, $domain ) {
	if ( $domain ==  'travelify' && trim($translated_text) == 'Read more' ) {
		$translated_text = 'New text';
	}
	return $translated_text;
}
add_filter( 'gettext', 'colorlib_change_translate_text', 20, 3 );

Change the ‘New text’ text in the above plugin code to whatever you want to.

Best Regards,
Movin

Thanks. But i don’t know where i should locate this file. Can you help me?

You have to download the attached plugin file colorlib-divilab-plugin-69.zip then extract the file colorlib-divilab-plugin.php from it where you have to make above change then rearchive that modified file colorlib-divilab-plugin.php in to zip file and install it on your site.