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
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
};
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 optionslinebreaks
andlinks
tofalse
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 -For information regarding all the options of
snippet
operator -