sebtlee
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Custom Post Order] Order child pages?I’ve found a solution for this. This is what I needed in WP_Query $args
‘post_parent’ => $post->ID,
‘orderby’ => ‘menu_order’,
‘order’ => ‘ASC’- This reply was modified 4 years ago by sebtlee.
Hmm, that did the trick for me. Not sure I know enough about CRON jobs and hosting to help but…
You could try installing a plugin like ‘WP Control’ to see what’s happening with your CRON jobs.
The only other thing I use is a plugin called “Scheduled Post Trigger’, so if WordPress fails to execute a CRON job, the next time someone loads a page on your website it checks to see if there are any failed CRON jobs and tries to run them again.
Forum: Plugins
In reply to: [Advanced Schedule Posts] ASP won’t let me edit any content (POST, PAGES…)Couldn’t fix the issue. Now using the plugin “Post Expirator” which is working for me.
Not as many features as this plugin, but post/page expiration datetime is working e.g. can’t replace with another article.
- This reply was modified 5 years, 3 months ago by sebtlee.
Adding the following to my .htaccess file fixed my issue with posts not expiring:
# Exclude the WP CRON and other scripts from authentication
<FilesMatch “(wp-cron.php|another-script.php)$”>
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>Just tried installing with the latest version on WordPress 5.6.2, and the post/page did not expire on testing.
- This reply was modified 5 years, 3 months ago by sebtlee.
Forum: Plugins
In reply to: [Advanced Schedule Posts] ASP won’t let me edit any content (POST, PAGES…)Same issue.
WordPress 5.6.2
If I disable Advanced Schedule Posts the issue goes.
Also, if I disable Yoast SEO, but enable Advanced Schedule Posts the issue also goes away.
@digiscrap & @tonimito – do you also have Yoast SEO installed? I’m thinking there may be a conflict there. Did either of you find a solution?
- This reply was modified 5 years, 3 months ago by sebtlee.