Script Code Snippet shows in Blog Post Summary

683 Views Asked by At

Recently my blog Sample approved Adsense and so I started placing Ads on top of the post. But this causes the ad code to show up in the post summary like this Please see this ximagex

Please help me to figure out how to remove that.

The Java Script Code

<script type='text/javascript'>
//<![CDATA[
//Post Thumbnail Setting
var TemplateismSummary = {
    displayimages: false,
    imagePosition: 'left',
    Widthimg: 200,
    Heightimg: 0,
    noThumb: 'https://lh3.googleusercontent.com/-GRP8IcURRsw/T9MjiNWXUcI/AAAAAAAAB88/QEDpDHxI55o/s1600/no-thumb.jpg',
    SummaryWords: 21,
    wordsNoImg: 20,
    skipper: 0,
    DisplayHome: true,
    DisplayLabel: true
};
1

There are 1 best solutions below

0
On

You will need to utilize the newly introduced snippet operator. This is Blogger's native method for generating a snippet from an HTML string (In our case, this is the full post content). Setting the options linebreaks and links to false is required to completed remove all the HTML tags from the snippet generated via this operator. Replace the instance of <data:post.body/> with the following code -

<b:if cond='data:blog.pageType not in {"static_page", "item"}'>
  <b:eval expr='snippet(data:post.body, {length: 450, linebreaks: false, links: false})' />
<b:else/>
  <data:post.body/>
</b:if>

For information regarding all the options of snippet operator -

snippet(string, options)

Produces a short snippet from an HTML string.

options: Object specifying the snippeting options, which are:

  • links: boolean for whether to preserve anchors/links in the snippet. Defaults to true.
  • linebreaks: boolean for whether to preserve linebreaks (tags) in the snippet. Defaults to true.
  • ellipsis: boolean for whether to append an ellipsis to the end of the snippet. Defaults to true.
  • length: Number specifying the maximum length of the snippet.