• Cara Atasi Tombol Balas di Komentar Blog Yang Tidak Berfungsi



    Masuk blog > pilih menu tema > klik edit html, cari kode pembuka head ini:

    <head>

    Gandi dengan kode pembuka head berikut:
    <head>

    Untuk kode penutup head cari ini:
    &lt;/head&gt;&lt;!--<head/>--&gt;

    Ganti dengan kode penutup head ini:
    </head>

    Kode penutup body cari ini:
    &lt;!--</body>--&gt;&lt;/body&gt;

    Ganti dengan kode ini:
    </body>

    Cari kode pembuka html di bawah ini:
    <HTML expr:dir='data:blog.languageDirection'>

    Ganti dengan aslinya seperti di bawah ini:
    <html>

    kode penutup html, cari kide ini:
    </HTML>

    Ganti dengan kode ini:
    </html>

    Lanjut dengan mencari kode ini:

    <b:includable id='comment_picker' var='post'>

    Ganti dengan kode ini:
    <b:includable id='comment_picker' var='post'>
      <b:if cond='data:post.commentSource == 1'>
        <b:include data='post' name='iframe_comments'/>
      <b:elseif cond='data:post.showThreadedComments'/>
        <b:include data='post' name='threaded_comments'/>
      <b:else/>
        <b:include data='post' name='comments'/>
      </b:if>
    </b:includable>

    Kemudian simpan





    Cara Kedua

    Cari script <b:includable id='main' var='top'> ganti script yang diblock di gambar dengan script di bawah ini:


             <b:includable id='main' var='top'>
      <b:if cond='data:mobile == &quot;false&quot;'>

          <b:include data='top' name='status-message'/>

        <!-- posts -->
        <div class='blog-posts hfeed'>

          <data:defaultAdStart/>
          <b:loop values='data:posts' var='post'>
            <div class='post-outer'>
            <b:include data='post' name='post'/>
            <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
              <b:include data='post' name='comment_picker'/>
            </b:if>
            <b:if cond='data:blog.pageType == &quot;item&quot;'>
              <b:include data='post' name='comment_picker'/>
            </b:if>
            </div>
            <b:if cond='data:post.includeAd'>
              <b:if cond='data:post.isFirstPost'>
                <data:defaultAdEnd/>
              <b:else/>
                <data:adEnd/>
              </b:if>
              <div class='inline-ad'>
                <data:adCode/>
              </div>
              <data:adStart/>
            </b:if>
          </b:loop>
          <data:adEnd/>
        </div>

        <!-- navigation -->
        <b:if cond='data:blog.pageType == &quot;index&quot;'>
          <b:include name='nextprev'/>
          <b:else/>
          <b:if cond='data:blog.pageType == &quot;archive&quot;'>
            <b:include name='nextprev'/>
          </b:if>
        </b:if>

        <!-- feed links -->
        <b:include name='feedLinks'/>

        <b:if cond='data:top.showStars'>
          <script src='//www.google.com/jsapi' type='text/javascript'/>
          <script type='text/javascript'>
            google.load(&quot;annotations&quot;, &quot;1&quot;, {&quot;locale&quot;: &quot;<data:top.languageCode/>&quot;});
            function initialize() {
              google.annotations.setApplicationId(<data:top.blogspotReviews/>);
              google.annotations.createAll();
              google.annotations.fetch();
            }
            google.setOnLoadCallback(initialize);
          </script>
        </b:if>

      <b:else/>
        <b:include name='mobile-main'/>
      </b:if>

      <b:if cond='data:top.showDummy'>
        <data:top.dummyBootstrap/>
      </b:if>

    </b:includable>
           <b:includable id='backlinkDeleteIcon' var='backlink'>
                    <span expr:class='&quot;item-control &quot; + data:backlink.adminClass'>
                      <a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
                        <img src='http://www.blogger.com/img/icon_delete13.gif'/>
                      </a>
                    </span>
                  </b:includable>
           <b:includable id='backlinks' var='post'>
                    <a name='links'/>
                    <h4>
                      <data:post.backlinksLabel/>
                    </h4>
                    <b:if cond='data:post.numBacklinks != 0'>
                      <dl class='comments-block' id='comments-block'>
                        <b:loop values='data:post.backlinks' var='backlink'>
                          <div class='collapsed-backlink backlink-control'>
                            <dt class='comment-title'>
                              <span class='backlink-toggle-zippy'>
                                &#160;
                              </span>
                              <a expr:href='data:backlink.url' rel='nofollow'>
                                <data:backlink.title/>
                              </a>
                              <b:include data='backlink' name='backlinkDeleteIcon'/>
                            </dt>
                            <dd class='comment-body collapseable'>
                              <data:backlink.snippet/>
                            </dd>
                            <dd class='comment-footer collapseable'>
                              <span class='comment-author'>
                                <data:post.authorLabel/>
                                <data:backlink.author/>
                              </span>
                              <span class='comment-timestamp'>
                                <data:post.timestampLabel/>
                                <data:backlink.timestamp/>
                              </span>
                            </dd>
                          </div>
                        </b:loop>
                      </dl>
                    </b:if>
                    <p class='comment-footer'>
                      <a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + &quot;_backlinks-create-link&quot;' target='_blank'>
                        <data:post.createLinkLabel/>
                      </a>
                    </p>
                  </b:includable>
    Back To Top