Auto publish all lessons when publishing course
Maybe I'm missing something, but do you have to manually publish all lessons when publishing the course? We have over 150 courses and counting. I would expect that there would be some kind of "publish all" on this page.
FCE Content plugin could also fix this with a "publish" bulk action.
Fixed by manipulating the database:
SELECT COUNT(*) AS nr_concepts
FROM wpw_fcom_posts
WHERE type = 'course_lesson'
AND status = 'draft';
UPDATE wpw_fcom_posts
SET status = 'published'
WHERE type = 'course_lesson'
AND status = 'draft';