Top Social

Featured Posts Slider

Image Slider

Thứ Sáu, 9 tháng 12, 2016

TIỆN ÍCH POPULAR POST CHO BLOGGER CÓ HIỆU ỨNG ĐẸP MẮT




TIỆN ÍCH POPULAR POST CHO BLOGGER CÓ HIỆU ỨNG ĐẸP MẮT


Rate this post
Tiện ích Popular Post là tiện ích liệt kê ra những bài viết được nhiều người đọc và quan tâm. Popular Post là một tiện ích không thể thiếu với bất kì Blog nào. Trong những bài viết thủ thuật blogger lần trước, mình cũng đã giới thiệu tới các bạn một số mẫu Popular Post cho Blogger cũng khá đẹp mắt. Các bạn có thể xem thêm :
Gợi ý : Download template blogger miễn phí
Tiện ích Popular Post trong bài viết này mình giới thiệu có hiệu ứng đẹp mắt và hữu dụng. Cụ thể, tiện ích Popular Post này có hình ảnh thu nhỏ và hiện thị tiêu đề bài viết, nội dung tóm tắt khi bạn rê chuột vào.

TĂNG TRAFFIC CHO BLOG VỚI HITLEAP CỰC KÌ ĐƠN GIẢN



TĂNG TRAFFIC CHO BLOG VỚI HITLEAP CỰC KÌ ĐƠN GIẢN


3.63 (72.5%) 8 votes
Xin chào các bạn. Cũng khá lâu rồi mình không đăng bài nào bởi đang phải dành nhiều thời gian cho học tập. Nhưng hôm nay mình đã trở lại và hi vọng và sẽ lợi hại hơn xưa. OK. Bắt đầu
Gợi ý : Download template blogger miễn phí
Như các bạn đã biết, để tăng traffic của website bạn phải trải qua nhiều bước như tối ưu hóa giao diện, tối ưu hóa nội dung, tối ưu hóa nội dung rồi không ngừng quảng bá blog trên các trang mạng xã hội Facebook, G+…. Bài viết này mình sẽ hướng dẫn các bạn cách tăng traffic cho blogvới Hitleap vô cùng đơn giản, không những không mất phí và còn kiếm được ra tiền.
Chủ Nhật, 23 tháng 10, 2016

Cách ẩn widget ở trang chủ

First try: hiding widget from home page

Example, you want to hide a widget from home page. First, please accessTemplate Edit HTML, then click Jump to widget button and select the widget you want to hide. In this example, I will hide my widget HTML1.
The normal HTML widget will have a full code like below:

<b:widget id='HTML1' locked='false' title='HTML Widget' type='HTML'>
 <b:includable id='main'>
  <!-- only display title if it's non-empty -->
  <b:if cond='data:title != &quot;&quot;'>
   <h2 class='title'>
    <data:title/>
   </h2>
  </b:if>
  <div class='widget-content'>
   <data:content/>
  </div>
  <b:include name='quickedit'/>
 </b:includable>
</b:widget>
Now, to hide this widget from home, please add below code after <b:includable id='main'> tag:

<b:if cond='data:blog.url == data:blog.homepageUrl'>
 <b:remove/>
</b:if>
The final code will  be like this:

<b:widget id='HTML1' locked='false' title='HTML Widget' type='HTML'>
 <b:includable id='main'>
  <b:if cond='data:blog.url == data:blog.homepageUrl'>
   <b:remove/>
  </b:if>
  <!-- only display title if it's non-empty -->
  <b:if cond='data:title != &quot;&quot;'>
   <h2 class='title'>
    <data:title/>
   </h2>
  </b:if>
  <div class='widget-content'>
   <data:content/>
  </div>
  <b:include name='quickedit'/>  </b:includable>
</b:widget>
Now, click Save template button and check your home page to see, the widget was completely removed. You can view source of home page and find the id of the widget (with my case is id=’HTML1′), you would not found anything. It’s magic 🙂

Explain how it works

The rule is simple: if a widget contains undefined Blogger tag, it will be removed completely.

In example code above, the line: <b:if cond='data:blog.url == data:blog.homepageUrl'> will check if this is the home page and the undefined tag <b:remove/> will help us removing the widget completely.
You can use another tag than <b:remove/>, but it must be an undefined tag of Blogger. Example: <b:return/><b:exit/><b:hide/>, .etc…

Hide from other pages

You can read more information about Blogger page type condition tags at: Blogger Basic Global Data Tags. In this article, I will list some basic example for hiding widgets for certain page types of Blogger as below:

Hide from home page


<b:if cond='data:blog.url == data:blog.homepageUrl'>
 <b:remove/>
</b:if>

Hide from index pages

(home, label, search page or all posts page (include home and its older posts pages).

<b:if cond='data:blog.pageType == &quot;index&quot;'>
 <b:remove/>
</b:if>

Hide from static pages


<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
 <b:remove/>
</b:if>

Hide from item pages

(articles, posts)

<b:if cond='data:blog.pageType == &quot;item&quot;'>
 <b:remove/>
</b:if>

Hide from archive pages

(showing posts by months / years)

<b:if cond='data:blog.pageType == &quot;archive&quot;'>
 <b:remove/>
</b:if>

Hide from 404 pages


<b:if cond='data:blog.pageType == &quot;error_page&quot;'>
 <b:remove/>
</b:if>

Hide from mobile


<b:if cond='data:blog.isMobileRequest'>
 <b:remove/>
</b:if>

Showing instead of hiding

If you want to show instead of hide, you must use != instead of == . Example, if you want to show on home page, but hide from others, use this:

<b:if cond='data:blog.url != data:blog.homepageUrl'>
 <b:remove/>
</b:if>
If your case is not in the above list, please comment below then I can update a new code for you.
Thứ Ba, 10 tháng 5, 2016

Tạo điểm nhấn riêng phân biệt nhận xét của tác giả

DEMO bằng hình ảnh cho các bạn xem trước

☼ Giờ bắt đầu thủ thuật cùng Windows2it.

Vào Blog => Mẫu => Chỉnh sửa HTML. Nhấn tổ hợp phím Ctrl + F và tìm đến thẻ </head>. Sau đó dán đoạn mã Code sau lên phía trên thẻ </head> và Lưu mẫu.