Devtard
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic Post Tagger] Include/Exclude categoriesHello, thanks for the feedback, I added your suggestion to my to-do list.
Forum: Plugins
In reply to: [Automatic Post Date Filler] Changing time only?This plugin only overrides default date & time only when editing each post manually. APDF will not change the time in all your scheduled posts with just one click, if that’s what you want.
If you indeed don’t mind going through all your posts manually, the plugin should not change the date if the option “Custom date” is set to “Current date” and “Custom time” is set to “Specific time XX:YY”.
I can’t test this right now, though, so I apologize beforehand if I’m mistaken about this.
Forum: Plugins
In reply to: [Automatic Post Tagger] Not Working For New PostHi, APT currently tags posts only when the actions “save_post” and “publish_post” are triggered; the other plugin probably uses some other way to add posts to the database.
I’ll try to fix this in the next version, sorry for the inconvenience.
(The bulk tagging tool should be able to correctly retag all your posts; it has to be run manually however.)
Forum: Plugins
In reply to: [Automatic Post Tagger] Tag only most frequent keywords?Hi, I’m glad that you like it!
This feature is already on my to-do list. Hopefully it will be implemented in the next version.
Forum: Plugins
In reply to: [Automatic Post Tagger] Taggin the hashtags?Hi, this feature will be implemented in the next version 1.7.
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateCould you please post here some screenshots so that I could be sure what exactly you are trying to do and how the plugin behaves?
I think that backups have nothing to do with this problem (APT can only import keywords from the database and uploaded files, not from its backup folder.)
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateBy scraping the database you mean importing WP tags to APT, correct?
Forum: Plugins
In reply to: [Automatic Post Tagger] Bulk taggerHello, I’m not familiar with WooCommerce so I don’t know. But I assume that this plugin uses a different post type for WC products, so I would start with adding this post type’s name to the “Allowed post types” field and then see if APT can correctly add tags to such posts.
Forum: Plugins
In reply to: [Automatic Post Tagger] Using APT in Chinese (Japanese, Korean etc…)Disable the option “Automatically correct user inputs” and replace all word separators with one string separator (there’s no need to use other word separators in this case).
Hope that helps.
(I also published a more detailed manual with screenshots: http://devtard.com/?p=837)
Forum: Plugins
In reply to: [Automatic Post Tagger] Autoblogging Tags/Keyword IssuesThis plugin basically assigns tags to posts if it finds certain keywords. It tags posts every time they’re saved or published via WP API; the bulk tagging tool can also process multiple posts at once (useful if you want to retag your old posts). You’ll have to create a list of these keywords yourself though.
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – Houston, We have a ProblemIf you are getting similar errors it probably means that the plugin hasn’t upgraded its DB settings yet. That should be done automatically if you reload the page wp-admin/plugins.php in your browser.
(You shouldn’t lose any data during the update process but you might want to back up your DB table wp_apt_tags just in case.)
If that doesn’t help for some reason, you can fix this by executing the function apt_update_plugin manually. (Or you can just reinstall the plugin if you don’t mind losing its settings and keywords.)
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateForum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateNo problem; sorry for all the hassle. I’ll make sure that the update process is less painful in the next version. 🙂
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateGlad to hear that.
The message is supposed to disappear after you click the link – which apparently doesn’t work, because its security nonce is invalid. Try refreshing the page and clicking it again.
If that doesn’t help, in order to get rid of the message you’ll need to either modify the DB option “automatic_post_tagger” manually or execute the following code (e.g. somewhere at the beginning of the main APT file – try pasting it on the line 56 for example):
$apt_settings = get_option('automatic_post_tagger'); $apt_settings['apt_admin_notice_update'] = 0; update_option('automatic_post_tagger', $apt_settings);(Don’t forget to delete it after the annoying message disappears.)
Forum: Plugins
In reply to: [Automatic Post Tagger] APT v1.6 – missing keywords after updateOkay. It seems that the update function (“apt_update_plugin”) hasn’t been executed for some reason. Try to reload the page wp-admin/plugins.php in your browser, maybe the plugin will update itself then. Otherwise I would try to execute it manually.