I installed this module but found that it did not fit my needs exactly so I attempted to uninstall it. But, after deactivating the module, and even after deleting it from the /modules folder in my Drupal installation, it remains referenced in a few spots on my website. Namely, I have seen it in the list of content types to filter by in the Calendar module, the list of content types to subscribe to in the Subscription module, and the complete list of content in Drupal administration. I'd be happy to run a few SQL queries to get rid of this, but I don't really want to mess around because I am completely unfamiliar with Drupal.

Comments

pwolanin’s picture

This is possibly due to a bug in the node module.

see this issue: http://drupal.org/node/147061

You may just need a query like:

DELETE FROM node_type WHERE module = 'volunteer_timeslots'

pwolanin’s picture

Status: Active » Fixed

The type will keep showing up in the content list as long as there are nodes of this type.

Added the above query to the uninstall code.

Anonymous’s picture

Status: Fixed » Closed (fixed)