Anthony Butler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Auto DraftIf a plugin or theme does not handle these auto draft pages correctly, you need to do some PHP coding. Here is the filter I have added to the Misty Look theme’s search.php module to get rid of auto draft and trash items that Search Unleashed returns incorrectly:
<?php $p_status = get_post_status( $post ); if ($p_status != 'trash' and $p_status != 'auto-draft') : ?>
Followed later on by:
<?php else: echo 'One irrelevant ',$p_status,' item not shown here.'; endif; ?>
This sort of change is very easily done if you use the ‘child theme’ facilities of WordPress.
Forum: Fixing WordPress
In reply to: Recall an Auto-saved draft?To delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Networking WordPress
In reply to: Removing "Auto Draft" pages appearing in the menu.To delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Fixing WordPress
In reply to: Auto DraftTo delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Fixing WordPress
In reply to: Post Headline replaced with “Auto Draft”To delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Fixing WordPress
In reply to: Can’t delete Auto Draft pageTo delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Fixing WordPress
In reply to: Auto DraftTo delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Fixing WordPress
In reply to: Auto draft pagesTo delete these pages you need to use a MySQL front end, go to the posts table, sort on post_status and all the auto-drafts will come to the top for ease of deletion. Seems to be a WP core problem – every time I login or switch to the dashboard page an auto draft is created unless there is one in the posts table already. Search Unleashed finds them, which is a further embarrassment, and duplicates can be created.
Forum: Plugins
In reply to: Does Register Plus plugin work with 2.8xThat is tricky – I have not tested facilities such as email customisation, user defined fields, invitation codes, disclaimers, auto-complete queries, and so on.
Forum: Plugins
In reply to: [Plugin: Register Plus] Works fine on WP2.8Password strength meter and CAPTCHA problems on WordPress 2.8.3.
Forum: Plugins
In reply to: [Plugin: Register Plus] WP 2.8 – Does Reg. Plus work?Problems with password strength meter and CAPTCHA in 2.8.3.
Forum: Plugins
In reply to: Does Register Plus plugin work with 2.8xProblems on password strength meter and CAPTCHA.
Anthony Butler
Forum: Fixing WordPress
In reply to: [Plugin: Register Plus] ERROR: Image Validation does not match.This is a WordPress 2.8 problem.
Anthony Butler
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Getting Description / Alt Text To DisplayProblem solved – I had been looking at old 3rd party documentation. I have now discovered the ‘nggallery id=4 template=caption’ option. Too bad about single picture mode.