midwestkel
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Activity Log] Security Alerts Pruning not working as intendedJust confirming that I noticed this as well. I have a limit of 5,000 set but have 37,000 in my log.
Forum: Plugins
In reply to: [WP Activity Log] [Request] System notice when scheduled posts are publishedHey Robert,
In my config I’ve got – define(‘DISABLE_WP_CRON’, true);
Then I’ve got a cron that runs every minute going to wp-cron.php like:
wp-cron.php >/dev/null 2>&1The cron runs fine and posts are published, I just don’t see them in the audit log.
Forum: Plugins
In reply to: [WP Activity Log] [Request] System notice when scheduled posts are publishedHello and thanks for the quick reply. I do see those alerts are active and see when authors publish posts.
We have have cron disabled on our site and run it with a Linux cron job. I’m not sure if that is the cause or not.
Forum: Plugins
In reply to: [WP Activity Log] Plugin stopped responding after new version 1.0.0We noticed this also. Everything is being migrated over on upgrade and it took up all the server resources.
This needs to be an option after install with a warning.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Comments integration+1 for not adding to posts automatically. Give me a function that I can add to my theme please.
Forum: Plugins
In reply to: [Mobile theme switch] [Plugin: Mobile theme switch] Mobile=off not workingThanks for getting that fixed. Just FYI, WordPress doesn’t see it as being updated, I couldn’t update it through WordPress.
Forum: Fixing WordPress
In reply to: WP 3.4 /page/2/ not workingI’m having the same problem after upgrading to 3.4. Here is my info: https://wordpress.stackexchange.com/questions/55288/issue-with-front-page-navigation-after-upgrading-to-3-4
Forum: Plugins
In reply to: [Live Blogging] [Plugin: Live Blogging] Delay in Deleted PostsOk, for some reason the function isn’t being executed when post are trashed or deleted permanently. This is what I did to get around that:
Find
add_action('delete_post', 'live_blogging_delete_to_meteor'); add_action('trash_post', 'live_blogging_delete_to_meteor');
Replace with
add_action('before_delete_post', 'live_blogging_delete_to_meteor'); // add_action('trash_post', 'live_blogging_delete_to_meteor');
@yurivictor I’m curious about your setup. I’m running nginx for my server. Are using Meteor and if so, what does your conf file look like?
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] Help Panel Missing ContentAfter upgrading I saw that it is all there, no worries. Thanks for the quick reply though!
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Issues with postsI’m using
wp_link_pages
for multipart posts, how do I change'type' => 'multipart'
for a list of posts?Thanks for your help!
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Issues with postsIt’s only when it’s a list of posts and it’s the last post of the page.
Forum: Plugins
In reply to: [Text Expander] [Plugin: Text Expander] Shortcode doesn't seem to work.Just to update, it works. The theme my client is using had
remove_filter('the_content', 'wpautop');
that was blocking the filter.Sorry about that, also the documentation for others that download this would still be a good idea.
@marcin, I just want it to show the flyout box on just the custom post types I check and not pages.