I found many (empty) Toolset Woocommerce fieldgroups which I have not created. In admin I can not delete them. Can I delete them via database? Which related entries I have to delete too?
Hello. Thank you for contacting the Toolset support.
*** Please make a FULL BACKUP of your database and website.***
Before taking any action, I suggest first you should take full backup of your database so you will have a backup of database to restore if anything goes wrong.
As a temporary workaround, you need to find out the original custom field "Toolset WooCommerce" group that holds the actual custom fields and then try to run the following query.
SELECT * FROM wp_posts
where post_title like '%Toolset WooCommerce%'
and ID <> 99999;
Where:
- 99999 is the original "Toolset WooCommerce" custom field group that we do not want to delete.