I just upgraded to 1.11. Database connections and ticket details are displaying correctly. Now I'm adding customizations that I had in previous version.

I can successfully add an external link. Problem is that the link won't open in new tab when I added this code:
<a href="../blahblah.php?blahblahaudTix=<?php echo $ticketAdmin; ?>" target="_blank">Admin</a>

I've tried both target="_blank" and target="blank"

Any ideas for a solution?

Problem is the style. Adding class will allow external link to new tab:
<a class="no-pjax" href="../blahblah.php?blahblahaudTix=<?php echo $ticketAdmin; ?>" target="_blank">Admin</a>

Should I mark this thread as resolved and close it?

ntozier changed the title to [resolved] external link not opening to new tab.
Write a Reply...