Nascondere profilo Utente

Astuzia Nascondere profilo Utente

Messaggio Da Insane Dom 12 Gen 2014 - 4:00

Nascondere Profilo






Salve a tutti, con questo tutorial vi farò vedere come si può nascondere il profilo di un utente. Ecco alcuni esempi:

Per prima cosa andiamo in:
PDA Nascondere profilo Utente Arrow Utenti&Gruppi Nascondere profilo Utente Arrow Amministrazione dei Livelli Nascondere profilo Utente Arrow Crea nuovo livello
Ora giunti qui inseriamo il seguente codice nella titolo del rango:
Codice:
Esempio <span class="fa-ban"> </ span>
Impostare come rango speciale: SI

Bene ora andiamo a inserire il codice Javascript (ATTENZIONE alla versione del vostro forum)
Codici:

Titolo: quello che volete
Posizione: su tutte le pagine

-phpBB2
Codice:

var msghtml = "Inserire qui il testo che volete che compaia";
$(function(){
   /* Ocultar cuerpo mensajes */
   $('.fa-ban').parent().parent().next().find('div.postbody').html(msghtml);
   
   /* Ocultar perfil en mensajes*/   
   $(".fa-ban").parent(".postdetails").html($(".fa-ban:first").next().next("img"));   
   
   /* Ocultar perfil de usuario */
   $("#emptyidcc:has('.fa-ban')").find('#profile-advanced-details').html(msghtml);
   $(".fa-ban").parent(".gensmall").html($(".fa-ban").next().next("img"));
});

-phpBB3
Codice:

var msghtml = "Inserire qui il testo che volete che compaia";
$(function(){   
   /* Ocultar cuerpo mensajes */
   $('.fa-ban').closest('.postprofile').prev('.postbody').find('.content').html(msghtml);      
   
   /* Ocultar perfil en mensajes*/   
   $(".post div.inner:has('.fa-ban')").each(function(index) {      
      var aa = $(this).find("div.postprofile:has('.fa-ban')").find("strong:first").html();              
      var bb = $(this).find(".fa-ban:first").next().next("img");
      var cc = $(aa).append("<br>").append(bb);
      $(this).find("div.postprofile:has('.fa-ban')").html(cc);   
   });   
   
   /* Ocultar perfil de usuario */
   $("#emptyidcc:has('.fa-ban')").find('.inner:first').html(msghtml);
   $(".fa-ban").parent("div").html($(".fa-ban").next().next("img"));     
});

-PunBB
Codice:

var msghtml = "Inserire qui il testo che volete che compaia";
$(function(){
   /* Ocultar cuerpo mensajes */
   $('div.postbody:has(".fa-ban")>.post-entry').html(msghtml);
   
   /* Ocultar perfil en mensajes*/   
   $('div.user:has(".fa-ban")>.user-info').empty();
   $('div.user-basic-info:has(".fa-ban")').html($(this).find(".fa-ban:first").next().next("img"));
   
   /* Ocultar perfil de usuario */
   $("#profile-advanced-right:has('.fa-ban')").prev("#profile-advanced-layout").find(".main-content").html(msghtml);
   $('div#profile-advanced-right:has(".fa-ban")').find("div.main-content:first").html($(".fa-ban").next().next("img"));
});

-Invision
Codice:

var msghtml = "Inserire qui il testo che volete che compaia";
$(function(){
   /* Ocultar cuerpo mensajes */
   $('div.postbody:has(".fa-ban")>.post-entry').html(msghtml);
   
   /* Ocultar perfil mensajes */
   $('.postprofile:has(".fa-ban")').find('.popupmenu').remove();
   $('.postprofile-details:has(".fa-ban")').html($(".fa-ban:first").next().next("img"));
   
   /* Ocultar perfil del usuario */
   $("#profile-advanced-right:has('.fa-ban')").prev("#profile-advanced-layout").find(".box-content").html(msghtml);   
   $('div#profile-advanced-right:has(".fa-ban")').find("div.box-content:first").html($(".fa-ban:first").next().next("img"));
})

Ora vediamo cosa modificare:
Inserendo il codice per intero il profilo da voi selezionato verrà completamente oscurato ovvero i suoi Argomenti/messaggi verranno censurati il suo profilo non sarà visibile completamente anche l'avatar verrà tolto ecco alcuni screen:
Nascondere profilo Utente Tutori13Nascondere profilo Utente Tutori14

Mentre se cancelliamo le prime due righe i Argomenti/Messaggi saranno visibili mentre il profilo no:
Codice:
/* Ocultar cuerpo mensajes */
   $('.fa-ban').parent().parent().next().find('div.postbody').html(msghtml);
   
   /* Ocultar perfil en mensajes*/   
   $(".fa-ban").parent(".postdetails").html($(".fa-ban:first").next().next("img"));

Mentre cancellando questa riga del codice:
Codice:
$(".fa-ban").parent(".gensmall").html($(".fa-ban").next().next("img"));

Il profilo rimarrà nascosto ma si potrà comunque vedere l'avatar dell'utente.
Nascondere profilo Utente Tutori15




Tutorial creato da: 
Copyrigth © FORUMATTIVO.COM


Insane
Insane
Veterano dello staff
Veterano dello staff

Sesso : Maschio
Età : 32
Messaggi : 4178
Località : Varese

https://aiuto.forumattivo.it/
Insane è stato ringraziato dall'autore di questo topic.

Visualizza l'argomento precedente Visualizza l'argomento successivo Torna in alto

- Argomenti simili

 
Permessi in questa sezione del forum:
Non puoi rispondere agli argomenti in questo forum.