Hi,
In menu shortcut, the title “Shotcuts” is not translate. In french for exemple (Favoris or Raccourcis)
Thanks
Guy
Hi,
In menu shortcut, the title “Shotcuts” is not translate. In french for exemple (Favoris or Raccourcis)
Thanks
Guy
Hi is Not working.
I hided it OnApplicationInit
//Elimina descrip Shortcuts del menú
document.addEventListener(“DOMContentLoaded”, function(){
divsToHide =document.getElementsByClassName(“shortcuts-title”);
for(var i = 0; i < divsToHide.length; i++){
divsToHide[i].style.visibility = “hidden”; // or
divsToHide[i].style.display = “none”; // depending on what you’re doing
}
});
It didn’t work for me.
Where did you locate the code? in the head?
Hi Francisco, as I told in previous message, OnApplicationInit. Of course you must add rest of code. I send full code
?> <script> //Elimina descrip Shortcuts del menú document.addEventListener("DOMContentLoaded", function(){ divsToHide =document.getElementsByClassName("shortcuts-title"); for(var i = 0; i < divsToHide.length; i++){ divsToHide[i].style.visibility = "hidden"; // or divsToHide[i].style.display = "none"; // depending on what you're doing } }); </script> <?php
Thanks, yes, I had done it, I must have done something wrong, but I tried again, and now it works!
Thank you so much
Hi,
Works fine for me
Thanks
Guy