First of all, we go to Divi -> Theme Builder -> Integration. Then, inside the body we introduce the following code, inserting the text in “Insert your text here” or leaving it blank:

Code

<script>
jQuery(function ($) {
$(document).ready(function () {
var post_meta = $(‘article .post-meta’);
if (post_meta.length) {
post_meta.each(function () {
$(this).html($(this).html().replace(“by”, “Insert your text here”))
})
}
});
});
</script>

Save and you are done!