2014/03/26

Bloggerの「ラベル検索結果」を表示させないようにする

event_note3月 26, 2014 editBy 投資家 Shindy @ Civil Designer forumNo comments


ブロガーのラベル検索の際に表示される、「ラベル◯◯◯の投稿を表示しています。」と出てきますが、直接HTMLを編集することで表示されないようにすることができます。










まず、HTMLの編集で以下の文章群を探します。
------------------------------------------------
<b:includable id='status-message'>
  <b:if cond='data:navMessage'>
  <div class='status-msg-wrap'>
    <div class='status-msg-body'>
      <data:navMessage/>
    </div>
    <div class='status-msg-border'>
      <div class='status-msg-bg'>
        <div class='status-msg-hidden'><data:navMessage/></div>
      </div>
    </div>
  </div>
  <div style='clear: both;'/>
  </b:if>
</b:includable>

------------------------------------------------

これを以下のように書き換えます。

------------------------------------------------
<b:includable id='status-message'>
  <b:if cond='data:navMessage'>
  <div>
  </div>
  <div style='clear: both;'/>
  </b:if>
</b:includable>
------------------------------------------------

これらの書き換えを行う事により、ラベル表示が変えられます。


以下のサイトから引用しています。↓

くま同盟コンピュータLAB さんのHP

その他、blogger関連の情報など参考になります。

0 comments:

コメントを投稿