Opent wpomatic.php,
Replace
$row = $wpdb->get_row("SELECT * FROM {$this->db['campaign_post']} " . "WHERE campaign_id = {$campaign->id} AND feed_id = {$feed->id} AND hash = '$hash' ");
With
$row = $wpdb->get_row("SELECT * FROM {$this->db['campaign_post']} " . "WHERE hash = '$hash' "); //campaign_id = {$campaign->id} AND feed_id = {$feed->id} AND
Next Code
return sha1($item->get_title() . $item->get_permalink());
Replace with
return sha1($item->get_title());
You also can empty table wp_wpo_campaign_post table to start over the autoblog.
Tags: wordpress hack, wp-o-matic, wp-o-matic hack
Both comments and pings are currently closed.