Is there a way to see an overview of which categories have Solved enabled?

I don’t think this is possible through the UI, though you could pull this information out using a data explorer query. Something like this perhaps:

SELECT ccf.category_id
FROM category_custom_fields ccf
  JOIN categories c ON c.id = ccf.category_id
WHERE ccf.name = 'enable_accepted_answers'
  AND ccf.value = 'true'
ORDER BY c.position ASC
1 Like