إخفاء أداة في بلوجر سواءا على الصفحة الرئيسية أو الصفحات الأخرى
خيارات التحكم في اضافات بلوجر غير محدودة، وسنرى في هذا الدرس يمكن القيام بذلك عبر تعديل اكواد قوالب بلوجر لاخفاء أي أداة كيفما كان نوعها.
الخيارات المتاحة هي:
يعتبر استعمال الكثير من الادوات من بين اسباب بطئ تحميل الكثير من المدونات. وهو أمر سيء بالنسبة للسيو وتحسين آليات البحث. إذ أن جوجل وبقية محركات البحث تكره بشدة المدونات البطيئة التحميل. وبالتالي من المهم التحكم في التصميم وطريقة استعمال الأدوات بعد اضافتها.
إذا كنت لا تعرف اي اضافات تحتاج مدونتك راجع موضوع اهم اضافات بلوجر الضرورية لكل مدونة.
بعد ايجاد الاداة، لنقم بملاحظة عناصرها:
كل الادوات تبدأب
التحكم في الاداة يتم من خلال اضافة كودين بالأحمر كما راينا في الفيديو اعلاه:
الكود الاول يتم اضافته تحت:
والكود الثاني فوق:
قم بتعويض رابط الصفحة برابط خاص من مدونتك، مثلا : http://www.folfoly.com/p/blog-page_31.html
هذا كل ما يتعلق بالتحكم في ظهور ادوات بلوجر.
الخيارات المتاحة هي:
- اخفاء أداة في بلوجر على الصفحة الرئيسية أو صفحة محددة أو المشاركات.
- جعل أداة تظهر أو تختفي على صفحة محددة.
يعتبر استعمال الكثير من الادوات من بين اسباب بطئ تحميل الكثير من المدونات. وهو أمر سيء بالنسبة للسيو وتحسين آليات البحث. إذ أن جوجل وبقية محركات البحث تكره بشدة المدونات البطيئة التحميل. وبالتالي من المهم التحكم في التصميم وطريقة استعمال الأدوات بعد اضافتها.
إذا كنت لا تعرف اي اضافات تحتاج مدونتك راجع موضوع اهم اضافات بلوجر الضرورية لكل مدونة.
طريقة التحكم في إخفاء وإظهار أية أداة في بلوجر
أولا، شاهد الفيديو التالي لمعرفة طريقة البحث عن أداة ، وفي الاسفل ستجد جميع الاكواد جاهزة لاستعمالها:كود اداة بلوجر
- للتحكم في أي اداة على مدونتك، قم بفتح اداة تغيير القالب، ثم تحرير html
- Ctrl+f من لوحة المفاتيح للبحث عن اي أداة والتي يظهر كودها غالبا كما يلي (قم باستعمال اسم الاداة للبحث عنها):
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<!-- يتم اضافة الكود الاول هنا -->
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
<!-- يتم اضافة الكود الثاني هنا -->
</b:includable>
</b:widget>
<b:includable id='main'>
<!-- يتم اضافة الكود الاول هنا -->
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
<!-- يتم اضافة الكود الثاني هنا -->
</b:includable>
</b:widget>
بعد ايجاد الاداة، لنقم بملاحظة عناصرها:
كل الادوات تبدأب
<b:widget
وتنتهي ب
</b:widget>
التحكم في الاداة يتم من خلال اضافة كودين بالأحمر كما راينا في الفيديو اعلاه:
الكود الاول يتم اضافته تحت:
<b:includable id='main'>
والكود الثاني فوق:
</b:includable>
ادارة ادوات مدونات بلوجر باظهارها واخفاءها
1. اظهار اداة على الصفحة الرئيسية فقط
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
2. اخفاء اداة على الصفحة الرئيسية
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
3. جعل اداة تختفي على المشاركات أو المواضيع
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType!= "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.pageType!= "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
4. اظهار أداة على صفحة محددة بالرابط
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == "رابط الصفحة"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.url == "رابط الصفحة"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
قم بتعويض رابط الصفحة برابط خاص من مدونتك، مثلا : http://www.folfoly.com/p/blog-page_31.html
5. عدم اظهار أداة على صفحة محددة
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url != "رابط الصفحة"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.url != "رابط الصفحة"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
6. اظهار اداة على الصفحات الثابتة
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
7. اخفاء اداة على الصفحات الثابتة
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType != "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.pageType != "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
8. اظهار اداة على صفحات الارشيف فقط
<b:widget id='HTML1' locked='false' title='المشاركات الشائعة' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "archive"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "archive"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
هذا كل ما يتعلق بالتحكم في ظهور ادوات بلوجر.
اخي ممكن كود الاضافة تابعنا ولاتفوت جديد الدروس اللتي تظهر بشكل مصغر اسفل يسار مدونتك ولك جزيل الشكر
ردحذفسأقوم بنشرها قريبا صديقي
حذفلا شكر عىل واجب
انا عايز اخفيها فى كل الصفحات وتظهر فى المشاركات فقط
ردحذفاستعمل الطريقة الثانية
حذفمهو الى انا عايز اخفيه من الصفحة الرئيسية هو السايد بار
حذفولما بعمل الطريقة شكل التدوينات فى الصفحة الرئيسية بيبوظ
لازم تعمل مائة في المائة لمربع التدوينات
حذفأو أرسل الي قالبك وسأقوم باخفاء ما تريد
facebook.com/folfoly
كيف اضع كلمه بمجرد الوقوف عليها تتلون او يكون تحتها خط و هى فى الأساس بمجرد الضغط عليها تنقلك لمكان اخر
ردحذفمثل الباك لينك
مرحبا أخي
حذفأنت بحاجة لقاعدة css راجع دروس تصميم المواقع على مدونتنا وحظ موفق