I kept losing my tags and couldn’t figure out why. A quick Technorati search revealed a super simple hack that works.


Open the file “ultimate-tag-warrior-actions.php”Go to line 502 inside the function “ultimate_save_tags()”

Replace this line:

if (isset($_POST['comment_post_ID'])) return $postID;

With this:

if (isset($_POST['comment_post_ID'])) return $postID;
if (isset($_POST['not_spam'])) return $postID; // akismet fix
if (isset($_POST["comment"])) return $postID; // moderation.php fix

And viola! Off to the races. Thanks to 082net for the hack!