Non credo che questo sia possibile tramite l’interfaccia utente, anche se potresti estrarre queste informazioni utilizzando una query di esplorazione dati. Qualcosa del genere, forse:
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