FAQ and Troubleshooting
Frequently asked questions
Section titled “Frequently asked questions”Can I edit a scheduled post?
Section titled “Can I edit a scheduled post?”Not directly. To change the content or the scheduled time, delete the post from your Scheduled Posts tab and create a new one with the updated content or time.
Can I schedule a post to publish immediately?
Section titled “Can I schedule a post to publish immediately?”No - just click the regular Post button instead of going through the scheduler. The scheduler is only for future dates and times.
What timezone does the scheduler use?
Section titled “What timezone does the scheduler use?”The site’s configured timezone (set in WordPress > Settings > General). The modal shows the current server time so you can see what baseline you are scheduling against. If you are in a different timezone from the site, you need to convert the time yourself before entering it.
Can other members see my scheduled posts?
Section titled “Can other members see my scheduled posts?”No. Scheduled posts are hidden from the activity feed and from everyone else’s view. Only you can see them in your Scheduled Posts profile tab.
Can admins see my scheduled posts?
Section titled “Can admins see my scheduled posts?”No, unless they are also the author of the post. There is no admin-level scheduled post management interface.
Will I get a notification when my post publishes?
Section titled “Will I get a notification when my post publishes?”The plugin does not send a notification. Standard BuddyPress activity notifications (e.g., when someone comments) apply after the post is live.
Can I schedule more than one post?
Section titled “Can I schedule more than one post?”Yes, as many as you want. They each appear in your Scheduled Posts tab with their respective publish times.
Does scheduling work for group posts?
Section titled “Does scheduling work for group posts?”Yes. See Scheduling in Groups for permission requirements.
Does scheduling work with media (photos, images)?
Section titled “Does scheduling work with media (photos, images)?”Yes, media you attach to the post is included in the scheduled post. The media attachment is saved at the time you schedule; the post with the media goes live at the scheduled time.
Troubleshooting
Section titled “Troubleshooting”The clock icon does not appear
Section titled “The clock icon does not appear”- Confirm you are logged in. The scheduler only appears for logged-in users who can post activities.
- Confirm BuddyPress activity posting is enabled on your site.
- If using Youzify, verify the plugin is compatible with your Youzify version.
- Check for JavaScript errors in your browser console. A script conflict with another plugin or theme can hide the clock icon.
My post did not publish at the scheduled time
Section titled “My post did not publish at the scheduled time”Delayed publishing is almost always a cron issue:
- WP-Cron is disabled. Check
wp-config.phpfordefine( 'DISABLE_WP_CRON', true ). If it is there, you need a real server cron job pointing towp-cron.php. - Low site traffic. WP-Cron only fires when someone visits your site. On quiet sites, scheduled posts can be late by several minutes. Set up a real cron job for reliable timing.
- A stuck transient lock. If the cron failed mid-run, it may have left a lock. Use WP-CLI or a plugin to delete the
bpsa_publish_locktransient:Or in PHP:Terminal window wp transient delete bpsa_publish_lockdelete_transient( 'bpsa_publish_lock' );
The Scheduled Posts tab does not appear on my profile
Section titled “The Scheduled Posts tab does not appear on my profile”- Verify BuddyPress is active and functioning.
- The tab appears only when viewing your own profile (
bp_is_my_profile()must be true). It does not appear when viewing another member’s profile. - Check for theme or plugin hook conflicts at priority 100 on
bp_setup_nav.
Scheduled posts show in the public feed before their time
Section titled “Scheduled posts show in the public feed before their time”This can happen if rtMedia is active and its privacy settings are enabled. The plugin detects rtMedia’s privacy_enabled setting and switches to a WHERE-clause approach for hiding scheduled posts instead of meta_query. If you see scheduled posts leaking into the feed, check your rtMedia privacy configuration and ensure it is consistent.
After rtMedia was installed, the Load More button is broken on Scheduled Posts
Section titled “After rtMedia was installed, the Load More button is broken on Scheduled Posts”This is a known rtMedia interaction. The plugin includes a fix for this via the buddypress_schedule_activity_has_more_items filter. If you are still seeing problems, confirm you are on the latest plugin version.
I see duplicate scheduled posts
Section titled “I see duplicate scheduled posts”This was fixed in version 1.4.1. If you are seeing duplicates, update the plugin. The cron now uses an atomic status update (scheduled to publishing) to prevent multiple concurrent runs from processing the same post twice.
JavaScript console shows errors
Section titled “JavaScript console shows errors”Check for conflicts with other plugins. The plugin’s JavaScript is only loaded when:
- The current user can publish activities, or
- The current BuddyPress component is
schedule-activity.
If neither condition is true, the scripts do not load and no errors should appear. If scripts are loading in unexpected contexts, check for filter overrides on bp_nouveau_current_user_can.

