Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author voceplatforms

    (@voceplatforms)

    When Lift is configured, it *should* have added all the posts to the queue. If you don’t see them in the queue on the dashboard, you can force it by adding the following to your theme’s functions.php:

    add_action('admin_init', function() {
        if (current_user_can('admin') && isset($_GET['lift-queue-all'])) {
            Lift_Batch_Queue::queue_all();
        }
    });

    then when logged in as an admin to wp-admin, append &lift-queue-all=1 to the URL. Go to the Lift dashboard and you should see all the posts in the queue. wp-cron will process those in batches based on the queue interval set in the dashboard.

    -Chris

    Plugin Author Kevin Langley Jr.

    (@kevinlangleyjr)

    @scottphillips, we’ve tested with the latest release of the plugin and aren’t experiencing this issue. Since this issue was filed a while ago, I am hoping that at this point your issue has been solved. If it has not, please feel free to open a new fresh support thread and we can move forward from there.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Submit Old Posts’ is closed to new replies.