Finally I created a Tab menu for it and if someone wants to move it somewhere he can do it by copying the link and permissions.
--------------- Added [DATE]1446219813[/DATE] at [TIME]1446219813[/TIME] ---------------
Quote:
Originally Posted by MarkFL
What I did in one of my products to add a link to the "Quick Links" drop-down menu is use the plugin hook "global_setup_complete" and the plugin code:
PHP Code:
$template_hook['navtab_end'] .= '
<script>
var qlink = document.getElementById("vbmenu_qlinks").lastElementChild;
if (qlink)
{
var newlink = document.createElement("li");
newlink.innerHTML = "put link here";
qlink.appendChild(newlink);
}
</script>';
|
Tried your solution Mark but does not seems to work.