CHANGE DIVI BLOG READ MORE TEXT

CHANGE DIVI BLOG READ MORE TEXT

I noticed a lot of readers of my blogs are not computer savvy and do not realize the “read more” hyperlink would bring them to the full content. A quick google search revealed the easist fix would be to change the wording to say “Read Full Post”. Below is the code to do just that. Navigate to Divi>Theme Options>Integration and add code to the “body ” field

<script type="text/javascript">
(function($) {
$(document).ready(function() {
var newVal = 'View Full Post';
$('.more-link').html( newVal );
});
})(jQuery);
</script>


Originally appeared here

CHANGE DIVI BLOG READ MORE TEXT