The Edit Flow calendar will appear under the dashboard, not edit posts
Thread Starter
aquay
(@aquay)
Thanks Danial… it’s all good now!
Danial:
The calendar is not appearing on the dashboard, although it is enabled.
Any suggestions?
Is it missing for all users or just some users? Do you see the story budget?
Do you have any role modification happening, or other plugins that might be affecting this? By default, Edit Flow installs a couple of capabilities. You can get around this by filtering the required capabilities:
add_filter( 'ef_view_story_budget_cap', 'efx_filter_required_caps' );
add_filter( 'ef_view_calendar_cap', 'efx_filter_required_caps' );
function efx_filter_required_caps() {
return 'edit_posts';
}
How do I access the filtering area?
You’ll want to copy and paste that code snippet into your theme’s functions.php file.
OK. Added the code snippet to functions.php. The Dashboard is showing Unpublished content and Alerts but still no calendar or budget.
Do you have any plugins running that you can try deactivating?