[SOLVED] How to Delete an Ubercart Product Content Type?

| | 1 min read

Deleting a content type in Drupal 7 is very simple. We just go to admin/structure/types and click delete button of the content type which we need to delete. But in the case of Ubercart, there is no delete link in product content type (admin/structure/types). So how we can delete this?

Steps to Delete ubercart Product Content Type :

  1. Delete the Uc_Product from Ubercart Store

    For this first go to admin/store/products/classes. There we can see the uc_product lists. Click the delete button of the content type which we need to delete.

  2. Delete the content type of uc_product from structure

    For this, go to admin/structure/types and click delete button of the content type which we need to delete.

We can see two content types like product and product kit in the content type lists. These are uc_product content types and these two are default uc_product content type of ubercart so these cannot be deleted by configuration or other ways.

Hope this article helped :)