It would be useful to limit the autotagging to certain content types, e.g. only Articles and not Profiles (as used with Content_Profile), etc. We use a lot of content types for utility functions, e.g. content profiles, menus, etc, and it doesn't make sense for them all to be run through the autotagging engine. Additionally, being able to select only certain content types would make it easier to run a batch to update existing content of just the most important data, usually Articles.

Comments

IncrediblyKenzi’s picture

Status: Active » Closed (works as designed)

This is already implemented. You can select which content types to autotag in the settings panel for Autotagging.

Note in the code:

     // check that this node type is allowed for autotagging
      //
      $allowed_types = variable_get('autotagging_allowed_types', array());

      if (!in_array($node->type, $allowed_types)) {
        return NULL;
      }
damienmckenna’s picture

Yes, thanks sorry for missing that.