[JS] Anuncio de tema cerrado - 2/7/2019, 1:29 pm
Descripción:En este tutorial vamos a aplicar un mensaje anunciando que el tema ha sido cerrado y que por ta motivo no puede comentar en ese post. Código:Para poder aplicarlo vamos a tener que Ir a Panel de control > Módulos > HTML y JAVASCRIPT > Gestión de código JavaScript > Crear una nueva JavaScript Título: Tema archivado Investimento: Los temas Código JavaScript: - Código:
$(function() { if ($('img.i_reply[alt="Este tema está cerrado y no puedes editar mensajes o responder"]').length) { $('.paged-head').hide().before('<div class="topic_controls" style="min-height: 30px;margin-right: 25px;margin-bottom: 5px;"> < div class = "message" style = "background-color: rgb(243,243,243);border: 1px solid rgb(212,212,212);color: #515151;width: 100%;padding: 10px;line-height: 1.6;font-size: 12px;" > < strong > El tema ha sido archivado < /strong>. Por esta razón no se puede responder a este tema.</div > < /div>'); } var des = $('.main-foot').find('p.options a:nth-child(6)').attr('href'); var del = $('.main-foot').find('p.options a').attr('href'); if (jQuery('.i_icon_ip').length) { $('.message').append('<div id="des-del"><a href="' + des + '" style="background: rgb(246,246,246);background: -moz-linear-gradient(top, rgb(246,246,246) 0%, rgb(229,229,229) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(246,246,246)), color-stop(100%,rgb(229,229,229)));border: 1px solid rgb(219,219,219);-moz-box-shadow: 0px 1px 0px rgba(255,255,255,1) inset, 0px 1px 0px rgba(0,0,0,0.3);-webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 1) inset, 0px 1px 0px rgba(0, 0, 0, 0.3);box-shadow: 0px 1px 0px rgba(255, 255, 255, 1) inset, 0px 1px 0px rgba(0, 0, 0, 0.3);-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;color: #616161;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;font-size: 12px;height: 22px;line-height: 22px;padding: 3px 10px;white-space: nowrap;margin-right: 5px;">Desbloquear tema</a><a href="' + del + '" style="background-image: url(http://i.imgur.com/QjVKSFi.png);background-color: rgb(129, 34, 0);background-repeat: repeat-x;background-position: top;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;border-color: rgb(139,34,0);-moz-box-shadow: inset 0 1px 0 0 #db6e46, 0px 2px 3px rgba(0,0,0,0.2);-webkit-box-shadow: inset 0 1px 0 0 #DB6E46, 0px 2px 3px rgba(0, 0, 0, 0.2);box-shadow: inset 0 1px 0 0 #DB6E46, 0px 2px 3px rgba(0, 0, 0, 0.2);font-size: 12px;height: 22px;line-height: 22px;padding: 4px 10px;color: white;text-shadow: 0 -1px 0 #191919;white-space: nowrap;">Eliminar tema</a></div>'); } });
|