How to Remove The Widget Only On Homepage Blogger

Many of the bloggers who do not know if the blogger widget can be deleted in Homepage

Remove widgets on the homepage function is to make our blogs more dynamic and more menarih to be seen, many ways to remove them using widgets in hompepage function "if condition" only.

The technique can be used with the "if condition" in the CSS code or can also directly in the HTML. For example, I will use the technique of "if condition" in the HTML.
Post the widget code, in general blogger template is as follows:
     <b:section class='main' id='main' showaddelement='no'>
     <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog'/>
     </b:section>

In order to post or widget post pages do not appear on the front page or home page, you simply add code like this (green)
     <b:if cond='data:blog.url != data:blog.homepageUrl'>
     <b:section class='main' id='main' showaddelement='no'>
     <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog'/>
     </b:section>
     </b:if>
Code green in the above post is for the widget does not appear on the front page, but will appear on the single post page, category, search, archives etc.. In essence the code simply removes from the front page only.
In addition to the code, you can also use the following code (green):
     <b:if cond='data:blog.pageType == &quot;item&quot;'>
     <b:section class='main' id='main' showaddelement='no'>
     <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog'/>
     </b:section>
     </b:if>
To enter these codes follow the steps below:
  • Sign in to Blogger with your ID.
  • Click Design
  • Click the Edit HTML
  • It is recommended to make a backup first, click on Download Full Template
  • Find the code that you delete the widget on the front page.
    Examples of code like this:
    <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog'/>
    </b:section>
  • Add the code to be as the following:
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog'/>
    </b:section>
    </b:if>
  • Click SAVE TEMPLATE.
  • Finish and see the results.
Hopefully this article useful to you.
Greetings!!!!

Out Of Topic