المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : [تمبلت] إظهار التوقيع مرة واحدة للكاتب في المشاركات


!! Youness !!
15-08-2008, 02:00 PM
بسم الله الرحمن الرحيم

السلام عليكم

[تمبلت] إظهار التوقيع مرة واحدة للكاتب في المشاركات
والتمبلت مفيد جدآ لتخفيف الضغط على الصفحة
ويساهم هذا التعديل في حل مشكلة بطئ التصفح
التمبلت مرفق
وبالتوفيق

ولد الفجيرة
15-08-2008, 10:28 PM
لاهنت ع التمبلت يالغالي
بارك الله فيك

!! Youness !!
16-08-2008, 03:06 PM
حياك الله يالغالي وتسلم لي على المرور

رحموني
17-08-2008, 04:11 PM
مشكور اخوي

لاكن انا ماحصلت ال includes/functions_bbcodeparse.php

دخلت المجلد بس ماحصلته ؟؟؟

ايش الحل

!! Youness !!
17-08-2008, 09:40 PM
مافهمتك يالغالي

رحموني
18-08-2008, 01:40 AM
هاك تصغير الصور الكبيرة تلقائياً


قبل كل شيء خذ نسخه أحتياطيه من الملف

أفتح ملف
includes/functions_bbcodeparse.php

وأبحث عن

function handle_bbcode_img_match($link)
{
$link = strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);

return '<img src="' . $link . '" border="0" alt="" />';
}


أفتح ملف
includes/functions_bbcodeparse.php

هذا الملف ماحصلته داخل المجلد

فاضيه
18-08-2008, 10:23 PM
الله يعطيك العافيه يا أمين

هذا الملف ماحصلته داخل المجلد

إذا تستخدم النسخه 3.7

عدل على الملف class_bbcode.php

قبل أي تعديل خذ نسخه احتياطيه من الملف

ثم .. ابحث عن:

function handle_bbcode_img_match($link)
{
$link = $this->strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(array(' ', '"'), '', $link);

return '<img src="' . $link . '" border="0" alt="" />';
}

استبدله بـ:

function handle_bbcode_img_match($link){
global $vboptions;

$link = $this->strip_smilies(str_replace('\\"', '"', $link));

// remove double spaces -- fixes issues with wordwrap
$link = str_replace(array(' ', '"'), '', $link);

if ($vboptions['legacypostbit']){
return '<a href=' . $link . ' target="_blank"><img src="' . $link . '" onload="if(this.width>screen.width-1155) {this.width=screen.width-1155;this.alt=\'أضغط على الصورة لعرضها بالكامل\';}" onmouseover="if(this.alt) this.style.cursor=\'hand\';" border="0"></a>';
}

else{
return '<a href=' . $link . ' target="_blank"><img src="' . $link . '" onload="if(this.width>screen.width-440) {this.width=screen.width-440;this.alt=\'أضغط على الصورة لعرضها بالكامل\';}" onmouseover="if(this.alt) this.style.cursor=\'hand\';" border="0"></a>';
}

}

http://www.vb.eyesweb1.net/images/smilies/85.gif

!! Youness !!
19-08-2008, 05:42 PM
الاخت فاضية ماقصرت معاك يالغالي