Hi quest ,  welcome  |  sign in  |  registered now  |  need help ?

how to remove readmore on the page

Written By joeneva on Monday, July 11, 2011 | 9:29 PM

how to remove readmore on the page
I've had a very frustrating thing for me to learn when blogs get a template that "readmore" it does not work perfectly.

I also do a variety of ways, by googling the various sites and ultimately the same, failed. I was not discouraged, and keep looking until you find it. and finally succeeded in this way.

it is there "readmore" on pages that can not be opened, even when I click on "readmore" but could not open the page in its entirety, but only partially,
http://howto-trick.blogspot.com/
Such events are caused because of "readmore" that does not fit the template, or less than perfect in the addition of java script,

if you ever experienced anything like it, maybe this trick can solve the problem.

remember: this way might not work on all templates

Ok just go ahead, please follow these steps:
1. Departure to Dashboard -> Design -> edit html
2. We recommend that you backup your template first to avoid mistakes
3. Click Expand Widget Templates
4. Find the code like below, (which is similar as below)
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>
<span class='rmlink' style='float:left'><a expr:href='data:post.url'>READ MORE - <data:post.title/></a></span>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if> 
5. After see the code, note the green color code, to eliminate the "readmore" on the page, there is little additional code. see code below, this is the result after adding the code.

<b:if cond='data:blog.pageType != &quot;item&quot;'>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
<span class='rmlink' style='float:left'><a expr:href='data:post.url'>READ MORE - <data:post.title/></a></span>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<data:post.body/>
</b:if>
6. Red code is the code that is added to the code above, note in detail, in addition to adding the code, there is also replaced.
7. good luck and hopefully useful.

0 komentar:

Post a Comment