Home / Admin / Troubleshooting Action Scheduler – access the Scheduled Actions page
Duplicate Snippet

Embed Snippet on Your Site

Troubleshooting Action Scheduler – access the Scheduled Actions page

Some plugins that install the Action Scheduler library (such as the Action Scheduler plugin itself) add a Scheduled Actions option to the WordPress sidebar’s Tools menu. However, other plugins that include the Action Scheduler library, such as WPForms, WP Mail SMTP, and WooCommerce remove this option to avoid duplication.

Instead, once WPForms is activated, this option is provided in WPForms » Tools under the Scheduled Actions tab.

If you’d like to, you can still access the Scheduled Actions page using the WordPress Tools menu. This can be done by adding the following filter.

10+
Code Preview
php
<?php
/* 
Change the completed scheduled tasks storage to 1 week
Original doc link: https://wpforms.com/docs/how-to-troubleshoot-action-scheduler-issues-in-wpforms/
For support, please visit: https://www.facebook.com/groups/wpformsvip
*/
add_filter( 'wpforms_tasks_admin_hide_as_menu', '__return_false' );

Comments

Add a Comment