Open comment links in new window.
Source: <https://www.peeayecreative.com/how-to-open-divi-blog-post-links-in-a-new-tab-by-default/>
Copy the code in the Divi theme options » integrations, at the bottom under "Add code to the bottom of your posts, before the comments" and at the top turn on the "Enable single bottom code" option.
<!-- START Open links in blog post comments in new window -->
<script>
jQuery(document).ready(function(){
jQuery(".comment_postinfo .fn a").each(function(){
jQuery(this).attr("target", "_BLANK");
})
})
</script>
<!-- END Open links in blog post comments in new window -->
Code language: HTML, XML (xml)