Customize Blog Module - Read More Link Text
Change text of the read more button. Change style and color of the read more button.
Updated over a year ago
Change text of the Read More Link
1) To change the text of the Read More button in a Blog module go to Divi > Theme Options > Integrations > "Add code to the < head > of your blog" and add this code:
==========
<script>
(function($) {
$(document).ready(function() {
var custom_read_more_text = 'Custom Text';
$(".et_pb_posts .more-link, .et_pb_blog_grid .more-link").text(custom_read_more_text);
$(".pagination a").click(function(){
$(document).ajaxSuccess(function(){
$(".et_pb_posts .more-link, .et_pb_blog_grid .more-link").text(custom_read_more_text);
});
})
});
})(jQuery)
</script>
=========
Komentar