Making gallery custom links open in a new tab
In order to make the custom link items in the gallery open the links in a new browser tab/window, you have to open the js/grid-gallery.js file and modify line 1138:
<% if(item.link){ %><a href="<%= link %>" rel="<%= rel %>" title="<%= title %>"><% } %>\
to be like this:
<% if(item.link){ %><a href="<%= link %>" rel="<%= rel %>" target="_blank" title="<%= title %>"><% } %>\