Sparito Bottone Mention
2 partecipanti
Forum dei Forum: Aiuto per Forumattivo :: Assistenza a problemi e richieste :: Problemi con uno script o codici :: I problemi risolti con i codici
Pagina 1 di 1 • Condividi
Sparito Bottone Mention
www.ilcortiledellematte.net
PHPbb 3
Non ci sono nuovi widget o nuovi script
Credo da ieri, e cioè da quando Photobucket è tornata on line dopo 3 giorni di manutenzione e sono tornate tutte le varie icone, che è sparito il bottone Mention con la relativa possibilità di richiamare le utenti con il @surname...
I codici Javascript ci sono tutti e tre e con la spunta in tutte le pagine.
Il codice CSS non è stato toccato e contiene il codice da voi dato.
Mi sembra che sia tutto in ordine, ma nulla appare.
Succede solo a me? Mi potete aiutare?
Grazie
PHPbb 3
Non ci sono nuovi widget o nuovi script
Credo da ieri, e cioè da quando Photobucket è tornata on line dopo 3 giorni di manutenzione e sono tornate tutte le varie icone, che è sparito il bottone Mention con la relativa possibilità di richiamare le utenti con il @surname...
I codici Javascript ci sono tutti e tre e con la spunta in tutte le pagine.
Il codice CSS non è stato toccato e contiene il codice da voi dato.
Mi sembra che sia tutto in ordine, ma nulla appare.
Succede solo a me? Mi potete aiutare?
Grazie
Ultima modifica di T.Aurora il Sab 5 Nov 2016 - 20:40 - modificato 1 volta.
Re: Sparito Bottone Mention
Correggo me stessa... le utenti mi hanno avvertito che è successo prima del blocco di Photobucket che non c'entra proprio nulla, quindi è da circa la metà di ottobre che è sparita questa opzione.
Re: Sparito Bottone Mention
Mettilo nel box javascript negli argomenti....non togliere la fonte all'interno dello script.Ciao
fonte
- Codice:
$(function(){
'DEVELOPED BY ANGE TUTEUR';
'NO DISTRIBUTION WITHOUT CONSENT OF THE AUTHOR';
'ORIGIN : http://fmdesign.forumotion.com/t399-display-the-user-avatar-before-mentions#3207';
window.faMentionAvatar = {
// position modifies the position of the avatar
// 0 = before mention
// 1 = after mention
position : 0,
cacheTime : 1*60*60*1000, // amount of time the avatar is cached ( 1 hour )
mentions : null, // mention node list
index : -1, // current index in the mentions array
// checks if the mention is valid and then gets the avatar
getter : function() {
var mention = faMentionAvatar.mentions[++faMentionAvatar.index],
storage = window.localStorage,
id;
if (mention) {
id = mention.href.replace(/.*?\/u/, '');
if (storage && storage['mentionAvatar_' + id] && storage['mentionAvatar_' + id + '_exp'] > +new Date - faMentionAvatar.cacheTime) {
var avatar = document.createElement('IMG');
avatar.className += ' mention-ava';
avatar.src = storage['mentionAvatar_' + id];
faMentionAvatar.position ? mention.appendChild(avatar) : mention.insertBefore(avatar, mention.firstChild);
faMentionAvatar.getter();
} else {
$.get('/ajax/index.php?f=m&user_id=' + id, function(d) {
var avatar = $('.tooltip-content > img', d)[0];
if (avatar) {
faMentionAvatar.position ? mention.appendChild(avatar) : mention.insertBefore(avatar, mention.firstChild);
if (storage) {
storage['mentionAvatar_' + id] = avatar.src;
storage['mentionAvatar_' + id + '_exp'] = +new Date;
}
}
faMentionAvatar.getter();
});
}
}
}
};
// write the stylesheet into the HEAD section
document.write('<style type="text/css">.mentiontag img { height:20px; width:20px; vertical-align:middle; border-radius:100px; background:#FFF; box-shadow:0px 1px 1px rgba(0, 0, 0, 0.3), 0px -0px 1px rgba(0, 0, 0, 0.3); margin:1px 3px; padding:1px; }</style>');
// statements that need execution when the document is ready
$(function() {
faMentionAvatar.mentions = $('.mentiontag');
faMentionAvatar.getter();
});
}());
fonte
Re: Sparito Bottone Mention
No, non è cambiato nulla, non è uscito nessun bottone Mention e nessun tag nell'editor.
Re: Sparito Bottone Mention
Forse ce l'ho fatta... mi ha illuminato jessy scrivendo di spuntare gli "argomenti"... io avevo messo "tutte le pagine". È andato bene fino a 15 giorni fa e poi puff sparito.
Ora pare si veda tutto. L'ho scritto perchè magari può essere utile a qualcun altro.
Grazie jessy!!!!
Ora pare si veda tutto. L'ho scritto perchè magari può essere utile a qualcun altro.
Grazie jessy!!!!
Argomenti simili
» Bottone Mention
» CSS sparito
» Il mio forum è sparito...
» ''new topic'' sparito
» il mio forum è sparito
» CSS sparito
» Il mio forum è sparito...
» ''new topic'' sparito
» il mio forum è sparito
Forum dei Forum: Aiuto per Forumattivo :: Assistenza a problemi e richieste :: Problemi con uno script o codici :: I problemi risolti con i codici
Pagina 1 di 1
Permessi in questa sezione del forum:
Non puoi rispondere agli argomenti in questo forum.