|
||||||
| أرشيف تطوير منتديات vb3.6.0 :: يمنع منعاً باتا ً .. كتابة اي موضوع يهتم بمشاكل المنتديات (( يمنع وضع نسخ vBulletin )) |
![]() |
|
|
LinkBack | أدوات الموضوع | طرق العرض |
|
||||
|
السلام عليكم
هذا البرودكت نقل من رمز Code:
http://www.vbulletin.org/forum/showthread.php?t=119053 Version 1.0 امثلة الفلاش http://www.citconsultants.co.uk/demo...ger/index.html صور ![]() ![]() ![]() ![]() طريقة التركيب اولا : ارفع البرودكت المنتجات والإضافات البرمجية ثم التحكم بالمنتجات/ product ثم استيراد product-cit_inline_subscriptions.xml ثانيا : ارفع الصورة على المسار images/misc ثالث: ابحث عن تمبلت FORUMDISPLAY وثم ابحث عن رمز Code:
<!-- inline mod menu --> رمز Code:
<!-- inline subscription menu --> <div class="vbmenu_popup" id="inline_subs_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="vbmenu_option"><a href="#" onclick="update_sub(-1)">$vbphrase[unsubscribe]</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onclick="update_sub(0)">$vbphrase[no_email_notification]</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onclick="update_sub(1)">$vbphrase[instant_email_notification]</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onclick="update_sub(2)">$vbphrase[daily_email_notification]</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onclick="update_sub(3)">$vbphrase[weekly_email_notification]</a></td> </tr> </table> </div> <!-- / inline subscription menu --> احفظ التمبلت بعده ابحث عن تمبلت THREADBIT ثم ابحث عن رمز Code:
<if condition="$show['subscribed']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/subscribed.gif" alt="$vbphrase[you_are_subscribed_to_this_thread]" /> </if> إستبدلْه بهذا الكود رمز Code:
<if condition="$show['subscribed']">
<div id="inline_subs.$thread[threadid]">
<a href="#" onclick="set_thread($thread[threadid]); return false;"><img class="inlineimg" id="subicon_$thread[threadid]" border="0" src="$stylevar[imgdir_misc]/subscribed.gif" alt="$vbphrase[you_are_subscribed_to_this_thread]" /></a>
<script type="text/javascript">
vbmenu_register("inline_subs.$thread[threadid]", true);
</script>
</div>
</if>
وانتهى الملف بالمرفق |
![]() |
| العلامات المرجعية |
| أدوات الموضوع | |
| طرق العرض | |
|
|