Change the text of Button "Read More"

Hi, in Italian the “read more” button is translated in Italian as “Approfondisci”. I don’t like that name, how can I change it?

Hi @archer309,

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

Could you please tell me how you have translated it in Italian as “Approfondisci” so that i can help you?

Kind Regards,
Movin

I didn’t translated anything. Activello is already translated in Italian, because I have an Italian version of Wordpress I guess.

You can try changing it by using the attached small plugin specially developed for you that contains following custom code. Just change the text ‘New text’ in the below code to whatever you want to display in place of ‘Read More’ text.


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

Thank you for help, but unfortunatly it doesn’t work…

Try using attached modified plugin.

Hello,

I would like to change the default red color on “Read More” button in Activello theme, but i cannot find out how.

Can someone please help me ?

Thank you in Advance

Hey @efistarfa,

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change read more color*/
.read-more a{
  color:red;
}

Best regards,
Support.

Thank you so much for your amswer.

Unfortunately nothing happened. When i insert post grid the default color is red and i cannot change it to green.

Is there a possibility that there is something missing from the code?

Thank you very much in advance!

@efistarfa This topic is old and your question is not related to the question asked in this topic so to help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/activello/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.