Đăng nhập
Latest topics
» Tôi sẽ đỗ đại học!by NgocPRO 6/11/2024, 8:37 am
» Kỷ niệm xưa của chúng ta
by nightWalker 9/2/2024, 6:49 pm
» Bị lệch khung cần người giúp đỡ
by webhuy28 7/10/2021, 10:34 pm
» [HỎI ĐÁP] Danh sách bạn bè không thể hiển thị
by anhdaodaica1 2/10/2021, 10:04 pm
» [HỎI ĐÁP] Thông tin tài khoản không thể lưu thay đổi
by anhdaodaica1 2/10/2021, 6:05 am
» Phim bố già full
by huy.pc52 24/8/2021, 12:20 am
» Xin code Box HTML cho Forumvi
by Larva 1/7/2021, 12:57 pm
» Hello Anh Em Chinh phục
by HoàngTửNaivip5p 28/5/2021, 5:03 am
» Trang chủ tin tức cập nhật HOT 2016
by kenbi05 1/1/2020, 11:02 pm
» Không Dang9 bài viết = hình ảnh được
by huy.pc52 30/11/2019, 10:52 am
» CHÚC ANH EM NĂM MỚI VUI VẺ TRÀNG ĐẦY HẠNH PHÚC
by sps.kủn 12/2/2019, 1:16 pm
» Skin CNTT-K3 2015 (Full Mod)[✔]
by kenbi05 6/7/2018, 12:30 am
» baivong, handsome,....
by sps.kủn 29/6/2018, 1:54 pm
» [SHARE] SKIN ĐHFM.V7 @PUNBB
by tonyhoaivu 2/5/2018, 2:37 pm
» Share Skin Xanh Dương Cùi Bắp
by tonyhoaivu 28/4/2018, 5:57 pm
» Xin Skin http://v1.hotrofm.net/
by tonyhoaivu 28/4/2018, 5:45 pm
» Xin Skin Rao Vặt
by tonyhoaivu 15/4/2018, 12:07 pm
» Làm Sao Để Xóa Khung Này
by tonyhoaivu 14/4/2018, 7:18 pm
» [Lập nhóm]Lập nhóm fm
by vietkanpy 31/3/2018, 11:53 am
» [Help] về server úp ảnh của phutu [✔]
by baivong 17/3/2018, 10:18 pm
» Đừng khóc cho “tôi – Chinh Phục!”…
by AnHung 27/2/2018, 5:33 pm
» [Share] Skin Diendandaihoc.com [ Punbb ] [✔]
by Lu Mờ 13/2/2018, 7:28 pm
» Mời mấy thím vào groups Forumotion Việt Nam.
by dang02315 13/2/2018, 12:40 am
» Có thể làm các kiểu giao diện được không?
by Lu Mờ 9/2/2018, 3:40 pm
» ltns chinhphuc.info
by Shinichi Kudo 27/1/2018, 2:27 am
Top posting users this week
No user |
[phpbb3 & Invision] Quick Reply For SCEditor
+5
Rin
Lùn Lì Lợm
notme
Sấm
Get Over
9 posters
Trang 1 trong tổng số 1 trang
[phpbb3 & Invision] Quick Reply For SCEditor
Ở topic này [You must be registered and logged in to see this link.] mình đã đưa ra ver 2 quick reply cho punbb giờ mình viết lại cho phpbb3 và invision :
Hướng dẫn : ACP --> Modules --> Javascript --> Create a new javascript :
Title* : Quick Reply For SCEditor
Place : In the topic
Code :
phpbb3 :
Invision :
*Chú ý rằng code cho phpbb3 , Invision sẽ có 1 chỗ khác ( chỗ convert không nói) so với punbb điều này sẽ làm 2 phiên bản trên chạy mượt và ít lỗi hơn so với punbb
Hướng dẫn : ACP --> Modules --> Javascript --> Create a new javascript :
Title* : Quick Reply For SCEditor
Place : In the topic
Code :
phpbb3 :
- Code:
// Viết bởi doannamthai - diendan.chinhphuc.info (phpbb3);
// Written by doannamthai - diendan.chinhphuc.info (phpbb3);
$(function () {
$('#quick_reply input[name="post"]').click(function(a){
a.preventDefault();
var g = $("#text_editor_textarea").sceditor('instance').val();
var href = $('a[href*="mode=reply"]').attr("href");
var value = $("#text_editor_textarea").sceditor("instance").val().replace(/\s/g, '').length;
if(10 < value){
$('<div class="lreply"><img src="http://i35.servimg.com/u/f35/15/64/85/86/ajax-l10.gif"/></div>').appendTo(".frm-buttons");
$.post(href, {
"message" : g,
"auth[]": $("#quick_reply input[name='auth[]']:last").val(),
"lt" : $("#quick_reply input[name='lt']").val(),
"post": "Send"
}, function(t) {
if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nBạn phải chờ 5 giây mới có thể gửi bài");
$(".lreply").remove();
}
else if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nYou must wait 5 second before replying");
$(".lreply").remove();
}
if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nĐã có người gửi bài trước bạn.\nBạn phải F5 lại trang để tiếp tục.\nChú ý : Bạn nên lưu lại tin nhắn nếu không muốn mất ");
$(".lreply").remove();
}
else if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nSomeone had replied before your post\nYou must refresh the page to continue.\nNotice : You should save or copy your message if you don't want it gone");
$(".lreply").remove();
}
else {
var f = $(t).find('.panel a[href*="/t"]:first').attr('href');
var postid = f.split('#')[1];
location.href = f;
$.get(f , function(z){
$("#quick_reply input[name='auth[]']:last").val($(z).find("#quick_reply input[name='auth[]']:last").val());
$("#quick_reply input[name='lt']").val($(z).find("#quick_reply input[name='lt']").val());
$(z).find("#p"+postid).hide().insertAfter(".post:last").slideDown(400);
});
$("#text_editor_textarea").sceditor('instance').val("");
$(".lreply").remove();
}
});
}
else {
if($("html").attr("xml:lang") == "vi" ) {
alert("Xin lỗi\nNội dung quá ngắn không thể gửi bài !\nBạn cần nhập thêm "+ (10 - value) +" ký tự nữa.");
}
else {
alert("Sorry\nThe content is too short to send as post !\nYou must write "+ (10 - value) +" characters more.");
}
}
});
});
Invision :
- Code:
// Viết bởi doannamthai - diendan.chinhphuc.info (Invision);
// Written by doannamthai - diendan.chinhphuc.info (Invision);
$(function () {
$('#quick_reply input[name="post"]').click(function(a){
a.preventDefault();
var g = $("#text_editor_textarea").sceditor('instance').val();
var href = $('a[href*="mode=reply"]').attr("href");
var value = $("#text_editor_textarea").sceditor("instance").val().replace(/\s/g, '').length;
if(10 < value){
$('<div class="lreply"><img src="http://i35.servimg.com/u/f35/15/64/85/86/ajax-l10.gif"/></div>').appendTo(".frm-buttons");
$.post(href, {
"message" : g,
"auth[]": $("#quick_reply input[name='auth[]']:last").val(),
"lt" : $("#quick_reply input[name='lt']").val(),
"post": "Send"
}, function(t) {
if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nBạn phải chờ 5 giây mới có thể gửi bài");
$(".lreply").remove();
}
else if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nYou must wait 5 second before replying");
$(".lreply").remove();
}
if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nĐã có người gửi bài trước bạn.\nBạn phải F5 lại trang để tiếp tục.\nChú ý : Bạn nên lưu lại tin nhắn nếu không muốn mất ");
$(".lreply").remove();
}
else if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nSomeone had replied before your post\nYou must refresh the page to continue.\nNotice : You should save or copy your message if you don't want it gone");
$(".lreply").remove();
}
else {
var f = $(t).find('.box-content .msg a[href*="/t"]:first').attr('href');
var postid = f.split('#')[1];
location.href = f;
$.get(f , function(z){
$("#quick_reply input[name='auth[]']:last").val($(z).find("#quick_reply input[name='auth[]']:last").val());
$("#quick_reply input[name='lt']").val($(z).find("#quick_reply input[name='lt']").val());
$(z).find("#p"+postid).hide().insertAfter(".post:last").slideDown(400);
});
$("#text_editor_textarea").sceditor('instance').val("");
$(".lreply").remove();
}
});
}
else {
if($("html").attr("xml:lang") == "vi" ) {
alert("Xin lỗi\nNội dung quá ngắn không thể gửi bài !\nBạn cần nhập thêm "+ (10 - value) +" ký tự nữa.");
}
else {
alert("Sorry\nThe content is too short to send as post !\nYou must write "+ (10 - value) +" characters more.");
}
}
});
});
*Chú ý rằng code cho phpbb3 , Invision sẽ có 1 chỗ khác ( chỗ convert không nói) so với punbb điều này sẽ làm 2 phiên bản trên chạy mượt và ít lỗi hơn so với punbb
Tác giả : doannamthai
Vui lòng ghi rõ nguồn [You must be registered and logged in to see this link.] khi sao chép bài viết
Vui lòng ghi rõ nguồn [You must be registered and logged in to see this link.] khi sao chép bài viết
Get Over- CPModerator
-
Ngày đăng ký : 05/10/2012
Số bài : 362
CPP : 487
Châm ngôn sống : Ngọn gió sẽ đưa ta vi vu trên dòng đời cuộc sống
notme- CPModerator
-
Ngày đăng ký : 16/07/2011
Số bài : 872
CPP : 824
Châm ngôn sống : Nhát gái nó thành bản năng rồi :(
Re: [phpbb3 & Invision] Quick Reply For SCEditor
bắt đầu thấy invision có nh` hàng hơn punbb để rin test thử code này với invision xem nhưng trc hết like 1 cái
Re: [phpbb3 & Invision] Quick Reply For SCEditor
Code này của invi mượt lắm ấy
Pắt đầu thích invi rồi
Pắt đầu thích invi rồi
Re: [phpbb3 & Invision] Quick Reply For SCEditor
HoàngTửNaivip5p đã viết:Code này của invi mượt lắm ấy
Pắt đầu thích invi rồi
Punbb ngon hơn.
Re: [phpbb3 & Invision] Quick Reply For SCEditor
hóng-er đã viết:HoàngTửNaivip5p đã viết:Code này của invi mượt lắm ấy
Pắt đầu thích invi rồi
Punbb ngon hơn.
Like a PunBB....
K.-Kun- CPModerator
-
Ngày đăng ký : 22/11/2012
Số bài : 1511
CPP : 639
Châm ngôn sống : Không bao giời đi ngược lại với lời nói của mình! Đó chính là nhẫn đạo của tôi
Re: [phpbb3 & Invision] Quick Reply For SCEditor
HoàngTửNaivip5p đã viết:Pun load chậm hơn invi mà
Đương nhiên vì Pun có sử dụng Template.... và dễ sử dụng hơn Invi
K.-Kun- CPModerator
-
Ngày đăng ký : 22/11/2012
Số bài : 1511
CPP : 639
Châm ngôn sống : Không bao giời đi ngược lại với lời nói của mình! Đó chính là nhẫn đạo của tôi
Re: [phpbb3 & Invision] Quick Reply For SCEditor
Thái ơi 4rum Nai ko hiện hình load ajax
4rum nai là invi nhé
[You must be registered and logged in to see this link.]
4rum nai là invi nhé
[You must be registered and logged in to see this link.]
Re: [phpbb3 & Invision] Quick Reply For SCEditor
Cập nhật code . Fix lỗi không hiện chữ ký
phpbb3Invision
- Code:
// Viết bởi doannamthai - diendan.chinhphuc.info (phpbb3);
// Written by doannamthai - diendan.chinhphuc.info (phpbb3);
$(function () {
$('#quick_reply input[name="post"]').click(function(a){
a.preventDefault();
var g = $("#text_editor_textarea").sceditor('instance').val();
var href = $('a[href*="mode=reply"]').attr("href");
var value = $("#text_editor_textarea").sceditor("instance").val().replace(/\s/g, '').length;
if(10 < value){
$('<div class="lreply"><img src="http://i35.servimg.com/u/f35/15/64/85/86/ajax-l10.gif"/></div>').appendTo(".frm-buttons");
$.post(href, {
"message" : g,
"auth[]": $("#quick_reply input[name='auth[]']:last").val(),
"lt" : $("#quick_reply input[name='lt']").val(),
"attach_sig" : "1" ,
"post": "Send"
}, function(t) {
if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nBạn phải chờ 5 giây mới có thể gửi bài");
$(".lreply").remove();
}
else if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nYou must wait 5 second before replying");
$(".lreply").remove();
}
if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nĐã có người gửi bài trước bạn.\nBạn phải F5 lại trang để tiếp tục.\nChú ý : Bạn nên lưu lại tin nhắn nếu không muốn mất ");
$(".lreply").remove();
}
else if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nSomeone had replied before your post\nYou must refresh the page to continue.\nNotice : You should save or copy your message if you don't want it gone");
$(".lreply").remove();
}
else {
var f = $(t).find('.panel a[href*="/t"]:first').attr('href');
var postid = f.split('#')[1];
location.href = f;
$.get(f , function(z){
$("#quick_reply input[name='auth[]']:last").val($(z).find("#quick_reply input[name='auth[]']:last").val());
$("#quick_reply input[name='lt']").val($(z).find("#quick_reply input[name='lt']").val());
$(z).find("#p"+postid).hide().insertAfter(".post:last").slideDown(400);
});
$("#text_editor_textarea").sceditor('instance').val("");
$(".lreply").remove();
}
});
}
else {
if($("html").attr("xml:lang") == "vi" ) {
alert("Xin lỗi\nNội dung quá ngắn không thể gửi bài !\nBạn cần nhập thêm "+ (10 - value) +" ký tự nữa.");
}
else {
alert("Sorry\nThe content is too short to send as post !\nYou must write "+ (10 - value) +" characters more.");
}
}
});
});
- Code:
// Viết bởi doannamthai - diendan.chinhphuc.info (Invision);
// Written by doannamthai - diendan.chinhphuc.info (Invision);
$(function () {
$('#quick_reply input[name="post"]').click(function(a){
a.preventDefault();
var g = $("#text_editor_textarea").sceditor('instance').val();
var href = $('a[href*="mode=reply"]').attr("href");
var value = $("#text_editor_textarea").sceditor("instance").val().replace(/\s/g, '').length;
if(10 < value){
$('<div class="lreply"><img src="http://i35.servimg.com/u/f35/15/64/85/86/ajax-l10.gif"/></div>').appendTo(".frm-buttons");
$.post(href, {
"message" : g,
"auth[]": $("#quick_reply input[name='auth[]']:last").val(),
"lt" : $("#quick_reply input[name='lt']").val(),
"attach_sig" : "1" ,
"post": "Send"
}, function(t) {
if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nBạn phải chờ 5 giây mới có thể gửi bài");
$(".lreply").remove();
}
else if(t.indexOf("Flood") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nYou must wait 5 second before replying");
$(".lreply").remove();
}
if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") == "vi"){
alert("Lỗi!\nĐã có người gửi bài trước bạn.\nBạn phải F5 lại trang để tiếp tục.\nChú ý : Bạn nên lưu lại tin nhắn nếu không muốn mất ");
$(".lreply").remove();
}
else if(t.indexOf("A new") != -1 && $("html").attr("xml:lang") != "vi"){
alert("Error!\nSomeone had replied before your post\nYou must refresh the page to continue.\nNotice : You should save or copy your message if you don't want it gone");
$(".lreply").remove();
}
else {
var f = $(t).find('.box-content .msg a[href*="/t"]:first').attr('href');
var postid = f.split('#')[1];
location.href = f;
$.get(f , function(z){
$("#quick_reply input[name='auth[]']:last").val($(z).find("#quick_reply input[name='auth[]']:last").val());
$("#quick_reply input[name='lt']").val($(z).find("#quick_reply input[name='lt']").val());
$(z).find("#p"+postid).hide().insertAfter(".post:last").slideDown(400);
});
$("#text_editor_textarea").sceditor('instance').val("");
$(".lreply").remove();
}
});
}
else {
if($("html").attr("xml:lang") == "vi" ) {
alert("Xin lỗi\nNội dung quá ngắn không thể gửi bài !\nBạn cần nhập thêm "+ (10 - value) +" ký tự nữa.");
}
else {
alert("Sorry\nThe content is too short to send as post !\nYou must write "+ (10 - value) +" characters more.");
}
}
});
});
Get Over- CPModerator
-
Ngày đăng ký : 05/10/2012
Số bài : 362
CPP : 487
Châm ngôn sống : Ngọn gió sẽ đưa ta vi vu trên dòng đời cuộc sống
Similar topics
» Quick Reply For SCEditor
» [Ver 2] Quick reply for SCEditor[✔]
» [Help] Fix lỗi Quick Reply For SCEditor[✔]
» [Code test][INVISION]Quick reply[✔]
» Xin giúp sửa lỗi tại bảng Quick Reply và Post Reply
» [Ver 2] Quick reply for SCEditor[✔]
» [Help] Fix lỗi Quick Reply For SCEditor[✔]
» [Code test][INVISION]Quick reply[✔]
» Xin giúp sửa lỗi tại bảng Quick Reply và Post Reply
Trang 1 trong tổng số 1 trang
Permissions in this forum:
Bạn không có quyền trả lời bài viết