How can I change the 'Read more' text on Avada?

Unfortunately, until today there is no simple way to change the button text in the posts of Avada.

With the following code in the theme functions.php the text can be adjusted:

add_filter( 'avada_blog_read_more_link', 'my_read_more_link' );
function my_read_more_link( $read_more ) {
  $read_more = "Anderer Text";
  return $read_more;
}