If you’re using a custom field of type “Link” and want the link to always open in a new browser tab, you can add a small JavaScript snippet to your site.
JavaScript
document.body.addEventListener('click', function (e) {
const link = e.target.closest('.oum_location_custom_fields a');
if (link && !link.target) {
e.preventDefault();
window.open(link.href, '_blank', 'noopener');
}
});You can add this snippet under Open User Map > Settings > Advanced > Custom JS.