Reply Rapid
Forum gratuit: forum de suport al utilizatorilor :: Forum de suport :: Probleme legate de un script (cod) :: Arhiva scripturi/coduri
Pagina 1 din 1 • Distribuiţi
Reply Rapid
Salut,as dori cand postez un reply pe forumu meu sa fie mai rapid adica sa nu mi apara ca in imaginea de aici
Ultima editare efectuata de catre DauUna™ in Lun Mar 12, 2018 8:40 pm, editata de 1 ori
Re: Reply Rapid
Bună seara , Panou de Administrare -> Module -> Gestionarea codurilor JavaScript şi creeaţi un nou cod :
Titlu : Reply
Amplasare : Topicuri
Cod :
Titlu : Reply
Amplasare : Topicuri
Cod :
- Cod:
jQuery(function($) {
var form = $('form#quick_reply');
var tid1 = $('input[type="hidden"][name="tid"]', form).val();
var lt = $('input[type="hidden"][name="lt"]', form).val();
var t = $('input[type="hidden"][name="t"]', form).val();
$('input[name="preview"]', form).val('Previzualizare');
$('input[name="post"]', form).val('Trimite răspuns');
var notifMe = $('input[name="topic_auto_follow"]').prop("checked") ? 1 : 0;
console.log(notifMe);
$('input[name="post"]', form).click(function(d) {
d.preventDefault();
if ($('input[name="post_icon"]:checked', form).attr('id')) var icon = "\"post_icon\": $('input[name=\"post_icon\"]:checked', form).attr('id').split('icon_')[1]";
else var icon = "\"post_icon\": \"\"";
$('input[name="post"]', form).hide().after('<span class="submit-msg">Se postează mesajul dvs...</span>');
$.post('/post', {
"message": $('textarea', form).sceditor('instance').val(),
"mode": "reply",
"attach_sig": 1,
icon,
"tid": tid1,
"notify": notifMe,
"t": t,
"lt": lt,
"post": 1,
"auth":[$("[name*='auth']").eq(0).val(),$("[name*='auth']").eq(1).val()]
}).done(function(result) {
$('textarea', form).sceditor('instance').val("");
var topicURL = $('.panel a[href^="/viewtopic?"]', result).attr('href');
var topicID = $('.panel a[href^="/viewtopic?"]', result).attr('href').match(/#(\d+)/g)[0];
topicID = topicID.split('#')[1];
console.log(topicID);
$.post(topicURL).done(function(res) {
$('.post[id^="p"]:has(".postbody"):last').after($('#p' + topicID, res));
$("html, body").animate({
scrollTop: ($('#p' + topicID).offset().top - 20) + "px"
});
$('input[name="post"]', form).show().val('Trimite răspuns');
$('.submit-msg').remove();
$("body").append('<div class="notif">Mesajul dvs. a fost postat cu succes !</div>');
setTimeout(function() {
$('.notif').fadeOut().remove()
}, 3000)
})
})
})
});
Re: Reply Rapid
Buna seara,aparent erau codurile js buguit!Subiect RezolvatLucifer a scris:Bună seara , Panou de Administrare -> Module -> Gestionarea codurilor JavaScript şi creeaţi un nou cod :
Titlu : Reply
Amplasare : Topicuri
Cod :
- Cod:
jQuery(function($) {
var form = $('form#quick_reply');
var tid1 = $('input[type="hidden"][name="tid"]', form).val();
var lt = $('input[type="hidden"][name="lt"]', form).val();
var t = $('input[type="hidden"][name="t"]', form).val();
$('input[name="preview"]', form).val('Previzualizare');
$('input[name="post"]', form).val('Trimite răspuns');
var notifMe = $('input[name="topic_auto_follow"]').prop("checked") ? 1 : 0;
console.log(notifMe);
$('input[name="post"]', form).click(function(d) {
d.preventDefault();
if ($('input[name="post_icon"]:checked', form).attr('id')) var icon = ""post_icon": $('input[name="post_icon"]:checked', form).attr('id').split('icon_')[1]";
else var icon = ""post_icon": """;
$('input[name="post"]', form).hide().after('<span class="submit-msg">Se postează mesajul dvs...</span>');
$.post('/post', {
"message": $('textarea', form).sceditor('instance').val(),
"mode": "reply",
"attach_sig": 1,
icon,
"tid": tid1,
"notify": notifMe,
"t": t,
"lt": lt,
"post": 1,
"auth":[$("[name*='auth']").eq(0).val(),$("[name*='auth']").eq(1).val()]
}).done(function(result) {
$('textarea', form).sceditor('instance').val("");
var topicURL = $('.panel a[href^="/viewtopic?"]', result).attr('href');
var topicID = $('.panel a[href^="/viewtopic?"]', result).attr('href').match(/#(\d+)/g)[0];
topicID = topicID.split('#')[1];
console.log(topicID);
$.post(topicURL).done(function(res) {
$('.post[id^="p"]:has(".postbody"):last').after($('#p' + topicID, res));
$("html, body").animate({
scrollTop: ($('#p' + topicID).offset().top - 20) + "px"
});
$('input[name="post"]', form).show().val('Trimite răspuns');
$('.submit-msg').remove();
$("body").append('<div class="notif">Mesajul dvs. a fost postat cu succes !</div>');
setTimeout(function() {
$('.notif').fadeOut().remove()
}, 3000)
})
})
})
});
Ultima editare efectuata de catre DauUna™ in Lun Mar 12, 2018 8:40 pm, editata de 1 ori (Motiv : gata)
Re: Reply Rapid
DauUna a scris:Buna seara,aparent erau codurile js buguit!Subiect RezolvatLucifer a scris:Bună seara , Panou de Administrare -> Module -> Gestionarea codurilor JavaScript şi creeaţi un nou cod :
Titlu : Reply
Amplasare : Topicuri
Cod :
- Cod:
jQuery(function($) {
var form = $('form#quick_reply');
var tid1 = $('input[type="hidden"][name="tid"]', form).val();
var lt = $('input[type="hidden"][name="lt"]', form).val();
var t = $('input[type="hidden"][name="t"]', form).val();
$('input[name="preview"]', form).val('Previzualizare');
$('input[name="post"]', form).val('Trimite răspuns');
var notifMe = $('input[name="topic_auto_follow"]').prop("checked") ? 1 : 0;
console.log(notifMe);
$('input[name="post"]', form).click(function(d) {
d.preventDefault();
if ($('input[name="post_icon"]:checked', form).attr('id')) var icon = ""post_icon": $('input[name="post_icon"]:checked', form).attr('id').split('icon_')[1]";
else var icon = ""post_icon": """;
$('input[name="post"]', form).hide().after('<span class="submit-msg">Se postează mesajul dvs...</span>');
$.post('/post', {
"message": $('textarea', form).sceditor('instance').val(),
"mode": "reply",
"attach_sig": 1,
icon,
"tid": tid1,
"notify": notifMe,
"t": t,
"lt": lt,
"post": 1,
"auth":[$("[name*='auth']").eq(0).val(),$("[name*='auth']").eq(1).val()]
}).done(function(result) {
$('textarea', form).sceditor('instance').val("");
var topicURL = $('.panel a[href^="/viewtopic?"]', result).attr('href');
var topicID = $('.panel a[href^="/viewtopic?"]', result).attr('href').match(/#(\d+)/g)[0];
topicID = topicID.split('#')[1];
console.log(topicID);
$.post(topicURL).done(function(res) {
$('.post[id^="p"]:has(".postbody"):last').after($('#p' + topicID, res));
$("html, body").animate({
scrollTop: ($('#p' + topicID).offset().top - 20) + "px"
});
$('input[name="post"]', form).show().val('Trimite răspuns');
$('.submit-msg').remove();
$("body").append('<div class="notif">Mesajul dvs. a fost postat cu succes !</div>');
setTimeout(function() {
$('.notif').fadeOut().remove()
}, 3000)
})
})
})
});
Să înţeleg că codul nu mergea ?
Re: Reply Rapid
Nu,era de la codurile meleLucifer a scris:DauUna a scris:Buna seara,aparent erau codurile js buguit!Subiect RezolvatLucifer a scris:Bună seara , Panou de Administrare -> Module -> Gestionarea codurilor JavaScript şi creeaţi un nou cod :
Titlu : Reply
Amplasare : Topicuri
Cod :
- Cod:
jQuery(function($) {
var form = $('form#quick_reply');
var tid1 = $('input[type="hidden"][name="tid"]', form).val();
var lt = $('input[type="hidden"][name="lt"]', form).val();
var t = $('input[type="hidden"][name="t"]', form).val();
$('input[name="preview"]', form).val('Previzualizare');
$('input[name="post"]', form).val('Trimite răspuns');
var notifMe = $('input[name="topic_auto_follow"]').prop("checked") ? 1 : 0;
console.log(notifMe);
$('input[name="post"]', form).click(function(d) {
d.preventDefault();
if ($('input[name="post_icon"]:checked', form).attr('id')) var icon = ""post_icon": $('input[name="post_icon"]:checked', form).attr('id').split('icon_')[1]";
else var icon = ""post_icon": """;
$('input[name="post"]', form).hide().after('<span class="submit-msg">Se postează mesajul dvs...</span>');
$.post('/post', {
"message": $('textarea', form).sceditor('instance').val(),
"mode": "reply",
"attach_sig": 1,
icon,
"tid": tid1,
"notify": notifMe,
"t": t,
"lt": lt,
"post": 1,
"auth":[$("[name*='auth']").eq(0).val(),$("[name*='auth']").eq(1).val()]
}).done(function(result) {
$('textarea', form).sceditor('instance').val("");
var topicURL = $('.panel a[href^="/viewtopic?"]', result).attr('href');
var topicID = $('.panel a[href^="/viewtopic?"]', result).attr('href').match(/#(\d+)/g)[0];
topicID = topicID.split('#')[1];
console.log(topicID);
$.post(topicURL).done(function(res) {
$('.post[id^="p"]:has(".postbody"):last').after($('#p' + topicID, res));
$("html, body").animate({
scrollTop: ($('#p' + topicID).offset().top - 20) + "px"
});
$('input[name="post"]', form).show().val('Trimite răspuns');
$('.submit-msg').remove();
$("body").append('<div class="notif">Mesajul dvs. a fost postat cu succes !</div>');
setTimeout(function() {
$('.notif').fadeOut().remove()
}, 3000)
})
})
})
});
Să înţeleg că codul nu mergea ?
Subiecte similare
» Cum pun raspuns rapid si iconurile de la raspuns rapid la centru
» Ip in reply.
» Imagine Reply !
» Cod reply la topic
» Cum pun tabel cu anunturi sub titlu
» Ip in reply.
» Imagine Reply !
» Cod reply la topic
» Cum pun tabel cu anunturi sub titlu
Forum gratuit: forum de suport al utilizatorilor :: Forum de suport :: Probleme legate de un script (cod) :: Arhiva scripturi/coduri
Pagina 1 din 1
Permisiunile acestui forum:
Nu puteti raspunde la subiectele acestui forum