طلب كود اظهار صندوق الرد السريع للزوار
4 مشترك
منتدى الدعم و المساعدة لأحلى المنتديات :: منتدى الدعم والمساعدة :: دعم مشاكل التومبلايت و الأكواد :: أرشيف قسم "مشاكل التومبلايت و الأكواد"
صفحة 1 من اصل 1
طلب كود اظهار صندوق الرد السريع للزوار
السلام عليكم و رحمة الله و بركاته
أريد كود اظهار صندوق الرد السريع للزوار إن أمكن
أو حتى عن طريق تعديل التومبيلات ان كانت هناك طريقة
أريد كود اظهار صندوق الرد السريع للزوار إن أمكن
أو حتى عن طريق تعديل التومبيلات ان كانت هناك طريقة
رد: طلب كود اظهار صندوق الرد السريع للزوار
أريد كود لنسخة Modern BB
علما أنني وجدت كودين واحد لنسخة phpbb3
و الآخر لنسخة phpbb2
ألا يمكن تحويل احدهما ليعمل على نسخة مودرن ؟؟
علما أنني وجدت كودين واحد لنسخة phpbb3
- الكود:
$(function() {
if (_userdata.session_logged_in || document.getElementById('quick_reply')) return;
var reply = $('.i_reply')[0];
if (reply) reply = reply.parentNode;
else return;
window.servImgAccount = '';
window.servImgId = '';
window.servImgF = '';
window.plugins = '';
window.palette = 0;
window.illiweb = 'http://illiweb.com/';
window.locale = 'en';
window.height = '250';
window.plugin = 'bbcode';
window.toolbar = 'bold,italic,underline,strike|left,center,right,justify|bulletlist,orderedlist,horizontalrule|quote,code,faspoiler,fahide,table|servimg,image,link,youtube,dailymotion,flash|headers,size,color,font,removeformat|more|subscript,superscript|fascroll,faupdown,farand,faroll|date,time,pastetext,source';
window.cssFile = 'http://illiweb.com/rs3/16/frm/SCEditor/minified/jquery.sceditor.default.min.css';
window.isRtl = 0;
window.dice = [];
window.bSourceMode = false;
window.emoticonsEnabled = 1;
window.smileys = {};
window.iframeSrc = '/smilies.forum?mode=smilies_frame&t=1440581833';
window.illiwebDomain = 'http://illiweb.com/';
window.servimgDomain = 'www.servimg.com';
window.INTRANET = 0;
$.get(reply.href, function(d) {
var quick_reply = document.createElement('FORM'), area = $('#text_editor_textarea', d)[0], data = $('.submit-buttons', d)[0], anchor = document.anchors.quickreply, scripts, i, j, n;
quick_reply.id = 'quick_reply';
quick_reply.action = '/post';
quick_reply.method = 'post';
quick_reply.name = 'post';
quick_reply.enctype = 'multipart/form-data';
quick_reply.innerHTML = '<div id="textarea_content" style="width: 50%; clear: both; margin-left: auto; margin-right: auto; text-align: center;"><div style="padding:3px 0;"><span class="label">Username :</span><input class="inputbox" type="text" name="username" maxlength="25" value=""></div></div><link rel="stylesheet" href="http://illiweb.com/rs3/16/frm/SCEditor/src/themes/fa.default.min.css" type="text/css" media="all"/><style type="text/css">.sceditor-button-flash div { background-position: 0 -628px; }.sceditor-button-servimg div { background-position: 0 -644px; }.sceditor-button-dailymotion div{ background-position: 0 -660px; }.sceditor-button-faspoiler div { background-position: 0 -676px; }.sceditor-button-fahide div { background-position: 0 -692px; }.sceditor-button-fascroll div { background-position: 0 -708px; }.sceditor-button-faupdown div { background-position: 0 -724px; }.sceditor-button-farand div { background-position: 0 -756px; }.sceditor-button-faroll div { background-position: 0 -772px; }.sceditor-button-more div { background-position: 0 -788px; }.sceditor-button-emoticon div { background-position: 0 -804px; }.sceditor-button-headers div { background-position: 0 -820px; }</style></div>';
area && quick_reply.firstChild.appendChild(area);
data && quick_reply.firstChild.appendChild(data);
anchor.parentNode.insertBefore(quick_reply, anchor.nextSibling);
scripts = [
'http://illiweb.com/rs3/16/frm/jquery/cookie/jquery.cookie.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/jquery.sceditor.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/plugins/bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-custom-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/instance-sceditor.js'
];
for (i = 0, j = scripts.length; i < j; i++) {
n = document.createElement('SCRIPT');
n.type = 'text/javascript';
n.src = scripts[i];
quick_reply.appendChild(n);
}
});
'par ange tuteur';
});
و الآخر لنسخة phpbb2
- الكود:
$(function() {
if (_userdata.session_logged_in || document.getElementById('quick_reply')) return;
var reply = document.getElementById('i_reply');
if (reply) reply = reply.parentNode;
else return;
window.servImgAccount = '';
window.servImgId = '';
window.servImgF = '';
window.plugins = '';
window.palette = 0;
window.illiweb = 'http://illiweb.com/';
window.locale = 'en';
window.height = '250';
window.plugin = 'bbcode';
window.toolbar = 'bold,italic,underline,strike|left,center,right,justify|bulletlist,orderedlist,horizontalrule|quote,code,faspoiler,fahide,table|servimg,image,link,youtube,dailymotion,flash|headers,size,color,font,removeformat|more|subscript,superscript|fascroll,faupdown,farand,faroll|date,time,pastetext,source';
window.cssFile = 'http://illiweb.com/rs3/16/frm/SCEditor/minified/jquery.sceditor.default.min.css';
window.isRtl = 0;
window.dice = [];
window.bSourceMode = false;
window.emoticonsEnabled = 1;
window.smileys = {};
window.iframeSrc = '/smilies.forum?mode=smilies_frame&t=1440581833';
window.illiwebDomain = 'http://illiweb.com/';
window.servimgDomain = 'www.servimg.com';
window.INTRANET = 0;
$.get(reply.href, function(d) {
var quick_reply = document.createElement('FORM'), area = $('#text_editor_textarea', d)[0], data = $('td.catBottom', d).children(), anchor = document.anchors.quickreply, scripts, i, j, n;
quick_reply.id = 'quick_reply';
quick_reply.action = '/post';
quick_reply.method = 'post';
quick_reply.name = 'post';
quick_reply.enctype = 'multipart/form-data';
quick_reply.innerHTML = '<div id="textarea_content" style="width: 50%; clear: both; margin-left: auto; margin-right: auto; text-align: center;"><div style="padding:3px 0;"><span class="label">Username :</span><input class="inputbox" type="text" name="username" maxlength="25" value=""></div></div><link rel="stylesheet" href="http://illiweb.com/rs3/16/frm/SCEditor/src/themes/fa.default.min.css" type="text/css" media="all"/><style type="text/css">.sceditor-button-flash div { background-position: 0 -628px; }.sceditor-button-servimg div { background-position: 0 -644px; }.sceditor-button-dailymotion div{ background-position: 0 -660px; }.sceditor-button-faspoiler div { background-position: 0 -676px; }.sceditor-button-fahide div { background-position: 0 -692px; }.sceditor-button-fascroll div { background-position: 0 -708px; }.sceditor-button-faupdown div { background-position: 0 -724px; }.sceditor-button-farand div { background-position: 0 -756px; }.sceditor-button-faroll div { background-position: 0 -772px; }.sceditor-button-more div { background-position: 0 -788px; }.sceditor-button-emoticon div { background-position: 0 -804px; }.sceditor-button-headers div { background-position: 0 -820px; }</style></div>';
area && quick_reply.firstChild.appendChild(area);
data[0] && $(quick_reply.firstChild).append(data);
anchor.parentNode.insertBefore(quick_reply, anchor.nextSibling);
scripts = [
'http://illiweb.com/rs3/16/frm/jquery/cookie/jquery.cookie.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/jquery.sceditor.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/plugins/bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-custom-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/instance-sceditor.js'
];
for (i = 0, j = scripts.length; i < j; i++) {
n = document.createElement('SCRIPT');
n.type = 'text/javascript';
n.src = scripts[i];
quick_reply.appendChild(n);
}
});
'par ange tuteur';
});
ألا يمكن تحويل احدهما ليعمل على نسخة مودرن ؟؟
mazyane يعجبه هذا الموضوع
رد: طلب كود اظهار صندوق الرد السريع للزوار
مرحبا بك اخي الكريم بخصوص ماشرت به
تريد ان تسمح للزوار برد على المواضيع تستطيع ولتستفيد اكثر انظر هذا الموضوع :
وهذا الشرح
تريد ان تسمح للزوار برد على المواضيع تستطيع ولتستفيد اكثر انظر هذا الموضوع :
شرح مفصل للصلاحيات الأقسام الشائعة
وهذا الشرح
الصلاحيات
لوحة الاادارة >>إدارة عامة>>>>المنتديات و الفئات
( السماح للزوار بمعظم الصلاحيات) وهو السماح للزوار برؤية الأقسام وقراه المواضيع والرد على الموضوع عن طريق وضع علامه صح اما الزائر
من حيث
المعاينة وقراءه الموضوع والرد على رساله ضع علامه صح امام الزائر صورة توضيحية
تكبير الصورة معاينة الأبعاد الأصلية.
رد: طلب كود اظهار صندوق الرد السريع للزوار
أقصد صندوق الرد السريع الذي يظهر للأعضاء
أما خاصية الرد فقد فعلتها بالفعل لكني أريدهم ان يجدوا الصندوق أمامهم بدل الاضطرار للضغط على زر " اضافة رد " في كل مرة
( و الاكواد التي وضعتها تسمح بذلك لنسخة phpbb 2 و phpbb 3 ) و أنا أريدها لنسخة Modern BB
أما خاصية الرد فقد فعلتها بالفعل لكني أريدهم ان يجدوا الصندوق أمامهم بدل الاضطرار للضغط على زر " اضافة رد " في كل مرة
( و الاكواد التي وضعتها تسمح بذلك لنسخة phpbb 2 و phpbb 3 ) و أنا أريدها لنسخة Modern BB
رد: طلب كود اظهار صندوق الرد السريع للزوار
تفضل جرب الكود التالي
- الكود:
$(function() {
if (_userdata.session_logged_in || document.getElementById('quick_reply')) return;
var reply = $('a[href*="reply"]')[0];
if (reply) reply = reply;
else return;
window.servImgAccount = '';
window.servImgId = '';
window.servImgF = '';
window.plugins = '';
window.palette = 0;
window.illiweb = 'http://illiweb.com/';
window.locale = 'en';
window.height = '250';
window.plugin = 'bbcode';
window.toolbar = 'bold,italic,underline,strike|left,center,right,justify|bulletlist,orderedlist,horizontalrule|quote,code,faspoiler,fahide,table|servimg,image,link,youtube,dailymotion,flash|headers,size,color,font,removeformat|more|subscript,superscript|fascroll,faupdown,farand,faroll|date,time,pastetext,source';
window.cssFile = 'http://illiweb.com/rs3/16/frm/SCEditor/minified/jquery.sceditor.default.min.css';
window.isRtl = 0;
window.dice = [];
window.bSourceMode = false;
window.emoticonsEnabled = 1;
window.smileys = {};
window.iframeSrc = '/smilies.forum?mode=smilies_frame&t=1440581833';
window.illiwebDomain = 'http://illiweb.com/';
window.servimgDomain = 'www.servimg.com';
window.INTRANET = 0;
$.get(reply.href, function(d) {
var quick_reply = document.createElement('FORM'), area = $('#text_editor_textarea', d)[0], data = $('.submit-buttons', d)[0], anchor = document.anchors.quickreply, scripts, i, j, n;
quick_reply.id = 'quick_reply';
quick_reply.action = '/post';
quick_reply.method = 'post';
quick_reply.name = 'post';
quick_reply.enctype = 'multipart/form-data';
quick_reply.innerHTML = '<div id="textarea_content" style="width: 50%; clear: both; margin-left: auto; margin-right: auto; text-align: center;"><div style="padding:3px 0;"><span class="label">Username :</span><input class="inputbox" type="text" name="username" maxlength="25" value=""></div></div><link rel="stylesheet" href="http://illiweb.com/rs3/16/frm/SCEditor/src/themes/fa.default.min.css" type="text/css" media="all"/><style type="text/css">.sceditor-button-flash div { background-position: 0 -628px; }.sceditor-button-servimg div { background-position: 0 -644px; }.sceditor-button-dailymotion div{ background-position: 0 -660px; }.sceditor-button-faspoiler div { background-position: 0 -676px; }.sceditor-button-fahide div { background-position: 0 -692px; }.sceditor-button-fascroll div { background-position: 0 -708px; }.sceditor-button-faupdown div { background-position: 0 -724px; }.sceditor-button-farand div { background-position: 0 -756px; }.sceditor-button-faroll div { background-position: 0 -772px; }.sceditor-button-more div { background-position: 0 -788px; }.sceditor-button-emoticon div { background-position: 0 -804px; }.sceditor-button-headers div { background-position: 0 -820px; }</style></div>';
area && quick_reply.firstChild.appendChild(area);
data && quick_reply.firstChild.appendChild(data);
anchor.parentNode.insertBefore(quick_reply, anchor.nextSibling);
scripts = [
'http://illiweb.com/rs3/16/frm/jquery/cookie/jquery.cookie.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/jquery.sceditor.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/plugins/bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-commands-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/sceditor-custom-bbcode.js',
'http://illiweb.com/rs3/16/frm/SCEditor/src/instance-sceditor.js'
];
for (i = 0, j = scripts.length; i < j; i++) {
n = document.createElement('SCRIPT');
n.type = 'text/javascript';
n.src = scripts[i];
quick_reply.appendChild(n);
}
});
'par ange tuteur';
});
رد: طلب كود اظهار صندوق الرد السريع للزوار
الكود يعمل
بارك الله فيك أخي و جزاك خيرا
كنت خير عون لنا
و من بين كل المساعدين هنا فما شاء الله أنت الأكثر خبرة في الأكواد
( أقترح أن تنشر الكود في قسم التقنيات المتقدمة ليفيد الجميع )
و شكرا جزيلا لك
بارك الله فيك أخي و جزاك خيرا
كنت خير عون لنا
و من بين كل المساعدين هنا فما شاء الله أنت الأكثر خبرة في الأكواد
( أقترح أن تنشر الكود في قسم التقنيات المتقدمة ليفيد الجميع )
و شكرا جزيلا لك
رد: طلب كود اظهار صندوق الرد السريع للزوار
شكرا للأخ عمر .. موفق ينقل للأرشيفMostWanted كتب:الكود يعمل
بارك الله فيك أخي و جزاك خيرا
كنت خير عون لنا
و من بين كل المساعدين هنا فما شاء الله أنت الأكثر خبرة في الأكواد
( أقترح أن تنشر الكود في قسم التقنيات المتقدمة ليفيد الجميع )
و شكرا جزيلا لك
مواضيع مماثلة
» كيفية اظهار صندوق الرد السريع للجميع
» كود اظهار صندوق الرد السريع [للزوار]
» اقتراح اظهار صندوق الرد للزوار
» مشكلة في نافذة الرد السريع للزوار
» تعديل كود اظهار صندوق الرد للزوار للنسخه اويسم
» كود اظهار صندوق الرد السريع [للزوار]
» اقتراح اظهار صندوق الرد للزوار
» مشكلة في نافذة الرد السريع للزوار
» تعديل كود اظهار صندوق الرد للزوار للنسخه اويسم
منتدى الدعم و المساعدة لأحلى المنتديات :: منتدى الدعم والمساعدة :: دعم مشاكل التومبلايت و الأكواد :: أرشيف قسم "مشاكل التومبلايت و الأكواد"
صفحة 1 من اصل 1
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى