Set link targets in Items

Hi - we would like to hear if anyone knows a way to set links in ITEMS to open to a new tab? We have been able to set link targets at the Page level but haven’t been able to work out how to do this for Items. Any advice much appreciated - Thanks, Libby

Do you want to open an item show page in a new tab?
It depends on your theme, but assuming you have one of the standard themes, you probably use the link_to_item() function in your /items/browse.php script.
In this case you have to add link property “target” into the parameters array:

 echo link_to_item(item_image('square_thumbnail'), array("target" => "_blank"));

See the function documentation here: http://omeka.readthedocs.io/en/latest/Reference/libraries/globals/link_to_item.html?highlight=link_to_item