Bueno, espesamos de inmediato...
Vamos a la plantilla 'headerinclude' (como; AdminCP --> Plantillas y Estilos --> Plantillas --> Default Templates --> • Plantillas Sin Grupo (esta al final) --> 'headerinclude') y agregas el sgte. codigo:
Código:
<script type="text/javascript">
function selectCode(a)
{
var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0];
if (window.getSelection)
{
var s = window.getSelection();
if (s.setBaseAndExtent)
{
s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
}
else
{
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
}
else if (document.getSelection)
{
var s = document.getSelection();
var r = document.createRange();
r.selectNodeContents(e);
s.removeAllRanges();
s.addRange(r);
}
else if (document.selection)
{
var r = document.body.createTextRange();
r.moveToElementText(e);
r.select();
}
}
</script>
Ahora vamos a Admin CP --> Configuración --> Lenguajes --> Español (o el que utilisas) --> global.lang.php y buscas:
Cita:php_code
Y agregas despues lo sgte:
Código:
<a href="#" onclick="selectCode(this); return false;">(Seleccionar Todo)</a>
Y haces lo mismo con:
Cita:code
Guardas, y Listo!
Fuente: MyBB Community Forums (Foro Oficial)
Creador del Tema: Joey_Pham423
Traductor del Tema: Yo