ManagedCloud-Hosting Posted yesterday at 07:29 AM Report Posted yesterday at 07:29 AM Hello everyone... We need to add our Helpdesk link (URL) for our Support Software System (Vision Helpdesk) in client area of Blesta. When client clicks the link our helpdesk site opens in new window. Please help, thank you!! Quote
0 Paul Posted 19 hours ago Report Posted 19 hours ago I don't believe there's currently a way to add a target to the navigation links, at least not through the Navigation Editor. It might be possible with some custom javascript code. Per AI, something like this MIGHT work. <script> document.addEventListener('DOMContentLoaded', function() { // Target the specific link by its href var link = document.querySelector('a[href="/admin/plugin/support_manager/admin_main/"]'); if (link) { link.addEventListener('click', function(event) { // Prevent the default behavior (e.g., dropdown toggle or navigation) event.preventDefault(); // Open the link in a new window window.open(this.href, '_blank'); }); } }); </script> Replace "/admin/plugin/support_manager/admin_main/" with the Link URL, this example uses the support manager link in Blesta. Quote
Question
ManagedCloud-Hosting
Hello everyone...
We need to add our Helpdesk link (URL) for our Support Software System (Vision Helpdesk) in client area of Blesta. When client clicks the link our helpdesk site opens in new window.
Please help, thank you!!
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.