- This topic has 3 replies, 3 voices, and was last updated 7 years, 10 months ago by Hash.
Viewing 4 posts - 1 through 4 (of 4 total)
- AuthorPosts
- October 21, 2016 at 2:07 am #834yfcpeParticipant
Hello as I can edit the text in Featured Section?
October 21, 2016 at 10:03 pm #854HashKeymasterHi,
Add the below php code at the end of the function.php file or use some plugin that allows to add custom PHP code
add_filter( 'gettext', 'change_readmore_text', 20, 3 ); function change_readmore_text( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Read More': $translated_text = __( 'Read More Translation', 'total' ); break; } return $translated_text; }
change Read More Translation to your text
January 10, 2017 at 8:05 pm #1614Great TeamParticipantI added this to the TOTAL Theme at the end of the functions.php like you said.
I’ve recieved an error, so i reversed the proccess.Can you please guide me where to add this on that specific theme?
I Need to change READ MORE buttons to another language.
Thanks in advance,
January 10, 2017 at 8:49 pm #1616HashKeymasterIt is working fine when i tested by adding it to the Total Theme.
- AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.