External Links Not Opening in a New Window

Permalink
I have two external links that won't open in a new window. Tested in Chrome and Safari. Yes, the box is checked to have them open in a new window. Cache has been cleared.

http://www.usj.edu/academics/library/search-collection/...

Right-hand column. The links are:

Library Catalog
Research Guides

Running 5.6.2.1

Any thoughts?
Thanks.

kreative
 
hutman replied on at Permalink Best Answer Reply
hutman
It looks like this is some kind of a custom block or custom template on a block, what type of block is it? I'm guessing in the view.php you are missing this for the page:

$target = ($page->getCollectionPointerExternalLink() != '' && $page->openCollectionPointerExternalLinkInNewWindow()) ? '_blank' : $page->getAttribute('nav_target');
$target = empty($target) ? '_self' : $target;


and

target="<?php echo $target; ?>"


on the link.
kreative replied on at Permalink Reply
kreative
It is a custom block. Thanks for pointing me in the right direction.