This isn’t a built in option with the free theme. You can edit the theme through a child theme by adding this function into the child theme functions.php file:
remove_filter('excerpt_more', 'pinnacle_excerpt_more');
add_filter('excerpt_more', 'custom_pinnacle_excerpt_more');
function custom_pinnacle_excerpt_more($more) {
$readmore = __('Read More', 'pinnacle') ;
return ' … <a href="' . get_permalink() . '">'. $readmore . '</a>';
}
Kadence Themes
Thanks Kadence, that worked! I´m impressed with the theme and your helping service!