I decided not to use the Mass Contact module and now I can't delete it from my create content section. When I go to administer the content types there is no tab that says delete mass contact type.
How to I remove this. Can I delete it from the database or where. I tried uploading the later version than uninstalling and that didn't help.
Comments
Comment #1
oadaeh commentedUnfortunately, you will probably have to manually delete the database entry. If you have any left, you should delete the created nodes first. There was a bug in the node type creation code that I just fixed here, but it will not help for what has already been created.
Edit: I fixed the link.
Comment #2
mindyblock commentedOK, so I have to manually dlete the database entry. I am new to Drupal. I know how to look at the database entries, but I don't know what fields to delete. Can you explain further? Thanks.
Comment #3
mindyblock commentedSomeone with more expertise than I deleted it.
Comment #4
(not verified) commentedComment #5
blogjam commentedI have the same issue - what do I need to remove?
Thanks in advance.
Comment #6
oadaeh commentedThis should get rid of it for you:
DELETE FROM node_type WHERE type='mass_contact';
If you prefer a GUI, however, run PHPMyAdmin, go to your database, find the node_type table, browse the contents and delete the one that has mass_content in the type column.