Membres connectés récemment
[PHPBB3] Ajout du pseudo dans le script
2 participants
Page 1 sur 1 • Partagez
- Version du forum :PHPBB3
- Templates modifiés :oui
- Navigateur :Chrome
bonjour phil, est t'il possible de rajouter en début de l'avertissement le pseudo du membre sur ce script ?
merci
https://www.milouze14.com/t32022-toutes-versionsafficher-un-message-aux-membres-ayant-moins-de-x-messages
merci
https://www.milouze14.com/t32022-toutes-versionsafficher-un-message-aux-membres-ayant-moins-de-x-messages
Hello Thierry,
ce script devrait fonctionner:
Ou pour pousser un peu plus loin avec le nombre de messages)
ce script devrait fonctionner:
- Code:
$(function() {
var use=_userdata["username"];
//https://help.forumgratuit.ro/t51327-mesaj-de-eroare-in-functie-de-numarul-de-mesaje-v1-0
var numar_mesaje = "10", //représente le nombre de messages
//CHOISIR LA COULEUR ICI gris, bleu, jaune ou rouge
culoare = "bleu",
//LE LIEN DE L IMAGE
iconita = "https://cdn4.iconfinder.com/data/icons/meBaze-Freebies/128/info.png",
latime = "20",
inaltime = "20",
spatiu = "8",
spatiu_stanga = "30",
informatii_eroare = "Votre compte risque d'être désactivé. Pour continuer à utiliser ce compte, veuillez être plus actif. Merci!";
if (_userdata.session_logged_in == 1 && _userdata.user_posts < numar_mesaje) {
$('.avertisment').show(function() {
// CSS PERSONALIZAT
if (culoare === "rouge") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(175, 10, 10, 0.27)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background': '#FFEFEF',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'color': '#AF0A0A',
'font-size': '12px'
});
}
if (culoare === "bleu") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(31, 164, 185, 0.29)',
'background-color': 'rgb(236, 251, 253)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'color': 'rgb(42, 156, 171)',
'font-size': '12px'
});
}
if (culoare === "jaune") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(193, 192, 8, 0.5)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'background': 'rgb(253, 247, 194)',
'color': '#777',
'font-size': '12px'
});
}
if (culoare === "gris") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'border': '1px solid #d7d7d7',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'background': '#f9f9f9',
'color': '#777',
'font-size': '12px'
});
}
$(this).html(''+use+','+informatii_eroare+'');
});
}
});
Ou pour pousser un peu plus loin avec le nombre de messages)
- Code:
$(function() {
var use=_userdata["username"];
var num=_userdata["user_posts"];
//https://help.forumgratuit.ro/t51327-mesaj-de-eroare-in-functie-de-numarul-de-mesaje-v1-0
var numar_mesaje = "10", //représente le nombre de messages
//CHOISIR LA COULEUR ICI gris, bleu, jaune ou rouge
culoare = "bleu",
//LE LIEN DE L IMAGE
iconita = "https://cdn4.iconfinder.com/data/icons/meBaze-Freebies/128/info.png",
latime = "20",
inaltime = "20",
spatiu = "8",
spatiu_stanga = "30",
infopost="actuellement vous avez ",
informatii_eroare = "Votre compte risque d'être désactivé. Pour continuer à utiliser ce compte, veuillez être plus actif. Merci!";
if (_userdata.session_logged_in == 1 && _userdata.user_posts < numar_mesaje) {
$('.avertisment').show(function() {
// CSS PERSONALIZAT
if (culoare === "rouge") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(175, 10, 10, 0.27)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background': '#FFEFEF',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'color': '#AF0A0A',
'font-size': '12px'
});
}
if (culoare === "bleu") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(31, 164, 185, 0.29)',
'background-color': 'rgb(236, 251, 253)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'color': 'rgb(42, 156, 171)',
'font-size': '12px'
});
}
if (culoare === "jaune") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'background': '#f9f9f9',
'border': '1px solid rgba(193, 192, 8, 0.5)',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'background': 'rgb(253, 247, 194)',
'color': '#777',
'font-size': '12px'
});
}
if (culoare === "gris") {
$(this).css({
'border-radius': '3px 3px 3px 3px',
'border': '1px solid #d7d7d7',
'padding': '' + spatiu + 'px ' + spatiu + 'px ' + spatiu + 'px ' + spatiu_stanga + 'px',
'background-image': ' url(' + iconita + ')',
'background-size': '' + latime + 'px ' + inaltime + 'px ',
'background-position': '0.4% 50%',
'background-repeat': 'no-repeat',
'background': '#f9f9f9',
'color': '#777',
'font-size': '12px'
});
}
$(this).html(''+use+','+infopost+'( '+num+' ) message(s). <br />'+informatii_eroare+'');
});
}
});
@50Thierry
Hello Thierry,
j'ai édité mon message car j'avais mis le nombre à 10000 pour être certain que le script fonctionne sur mon fofo de tests.
https://www.milouze14.com/t32841-phpbb3-ajout-du-pseudo-dans-le-script#626266
Tu as désormais 2 choix de script .
Hello Thierry,
j'ai édité mon message car j'avais mis le nombre à 10000 pour être certain que le script fonctionne sur mon fofo de tests.
https://www.milouze14.com/t32841-phpbb3-ajout-du-pseudo-dans-le-script#626266
Tu as désormais 2 choix de script .
Sujets similaires
» [PHPBB3]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [PHPBB3] Problémes script : faire clignoter notification dans la toolbar
» [PHPBB2] Ajout d'un champs de profil dans un affichage.
» [PHPBB2]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [INVISION] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [PHPBB3] Problémes script : faire clignoter notification dans la toolbar
» [PHPBB2] Ajout d'un champs de profil dans un affichage.
» [PHPBB2]Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
» [INVISION] Afficher le Pseudo dans l'outil de modération "Modérer ce forum"
Créer un compte ou se connecter pour répondre
Vous devez être membre pour répondre.
Page 1 sur 1
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum