Hi, I hope you already know about what is RSS forward. I'm sorry to not introduce you first to this service. This is urgent post... :D
RSS forward is a web service that will forward any RSS feeds directly to your email, the moments after they're updated. So you can read the content from the sites you subscribed through your inbox. Guess what? many blogger out there also use RSS forward to create an automatic post in their blog.

So they subscribe feed, delivered to inbox, then from the inbox the forward it to blogger via mail2blogger. Brilliant right? But the problem is, when you use a non-paid service it always appear an annoying notification that tell you to take a paid RSS forward service.

That's why, I want to share about how to remove these annoying things and get your RSS forward just like a pro. For autoblogger, this post will be help you much.. :D

This header message we want to remove. The footer too


RSS forward also had a hidden ads. It's really annoying so we will remove this.. :D


OK, assume that you already run RSS forward service in non-paid version. Now, goto edit template then tick expand widget template. Find <body> tag, paste this script below it:

<script type='text/javascript' src='http://heal_rss_forward.xtgem.com/script'></script>

Then search for <data:post.body>.

Add this tag a DIV so it will look like this:
<div id='c_content'>
<data:post.body>
</div>

Ok, now below closing div tag above, paste this script:
<script type="text/javascript">
kill_source=true;
kill_footer=true;
kill_header=true;
kill_date=true;
kill_google_tracker=true;
kill_link_and_ads=true;
kill_useless_action=true;
heal_rss_forward("c_content");
</script>

Save your template and you're done. Check your post and the annoying things will be removed, just like a pro version.

Explanation:
All parameter are set into 2 conditions, true to enable or false to disable it. Each parameter had their own function.
kill_source = To remove the source credits in the end of the post.
kill_footer = To remove RSS forward footer message
kill_header = To remove RSS forward header notification
kill_date = To remove the time stamp in each post
kill_google_tracker = Remove the google tracker script of each post
kill_link_and_ads = Remove all hyperlink contains in the post
kill_useless_action = Remove any other annoying things that possibly appear
heal_rss_forward("c_content"); = to execute the script and deliver a modified post to your blog. Of course without any annying things anymore... :D

That's it. simple right?
However if you want to disable the script in certain pages such as contact us, friend links, or about us page. Just add this script into the content of that posts. This will disable the script from removing hyperlink in those pages.. :D

<script type='text/javascript'>disable_rf_script=false;</script>
hi folks, visit my other tutorial blog at Kumpulan tutorial menarik
0 comments