Hopefully it's useful and i post it in a right place.
You probably noticed that some of your wp-robot posts contain shit like "&#thirteen", "
", "&#nsbp", right?
The solution is, go to wp-robot dir/modules. Open the Article.php
Inside almost at the end there are some lines of
Find last of those and add
Then save the file and upload it to the hosting. For fixing existing posts, run an SQL query, but not sure its safe as i never tried. This file editing thingie works OK on wprobot 3.2 and 3.5
You probably noticed that some of your wp-robot posts contain shit like "&#thirteen", "
", "&#nsbp", right?
The solution is, go to wp-robot dir/modules. Open the Article.php
Inside almost at the end there are some lines of
Code:
$post = str_replace
Code:
$post = str_replace(' ', '', $post);
$post = str_replace('
', '', $post);
$post = str_replace('&#thirteen;', '', $post);
$post = str_replace('&#thirteen', '', $post);
$post = str_replace('Â ', '', $post);
$post = str_replace(' ', '', $post);
$post = str_replace(']]>;', '', $post);
$post = str_replace(']]>', '', $post);