Hey @09eric09
Thank you for the additional information. I can see that there is some custom jQuery code on your website being loaded that redirects all links to a new window by adding an event listeners to all ‘a’ elements. If this is performed by a plugin, I suggest changing the plugin or creating an exception for our plugin if that is possible. The code is at the bottom of the page, and is as follows;
<!--external links in new window-->
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function($) {
$('a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
if(!a.test(this.href)) {
$(this).click(function(event) {
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
});
}
});
});
//]]>
</script>
Let me know if there is anything else I can assist you with.