How to remove ads from wp robot?

Marcovan

Newbie
Joined
May 5, 2010
Messages
27
Reaction score
2
Hi Guys,

Im using wp robot 3 and i have been trying to get rid of the google ads/adsense from my rss articles. I have been trying to look for a solution for this, does anyone have an idea about this? Thanks in advance.
 
rss.php in the modules folder make this change and it'll strip all links.

Line 138
Code:
$post = $template;

change to

Code:
$post = wpr_strip_selected_tags($template, array('a','iframe','script'));


Should do what you are looking for unless I misunderstand which I could be, to many mojitos tonight.
 
Just we can use this

Code:
$post = wpr_strip_selected_tags($template, array('iframe','script'));

It won't strip links
 
Hi guys i am having another problem if you could help, i am getting double titles through the rss feed, 1 title is in a box with grey border, and the other is just a text link which looks normal. You can not click on the box with the text title in it. Please could you help as this is doing my head in. Thanks
 
Hi, here is a screen pic of the problem i am on about in wprobot. please have a look, i am trying to get rid of the box with the blue text in it.
 

Attachments

  • Screen pic.JPG
    Screen pic.JPG
    15.5 KB · Views: 46
Back
Top