Chip Bennett
Forum Replies Created
-
Forum: Plugins
In reply to: [Update Control] not workingHi simvil,
Thanks for using the Plugin. Can you provide any specifics? “Not working” doesn’t really give me much to go on, to help resolve your issue.
Forum: Plugins
In reply to: [Update Control] Affecting manual theme updatesHi Mark,
You’ll want to ask the developer of that Theme what’s going on. Their update API may not play well with the core update API.
Hi Dane,
Thanks for using the Plugin. I specifically want to keep it limited in scope to filtering the update configuration. It should be compatible with a Plugin that could potentially change the recipient or content of update-related emails.
Thanks for your concern, and for asking the question!
No, this Plugin is not vulnerable to the exploit, as the
example.html
file is not bundled with the Plugin files. The Plugin is probably due for a refresh and polish, but it should remain secure.Forum: Fixing WordPress
In reply to: How to turn OFF Automatic updatesThis Plugin FAILED its first test.
I used it and the auto update went through.
Did you post in the plugin’s support forum, including relevant information?
Of the four listed, three plugins (ostensibly) do things related to plugin management. If the plugin rows are being modified, I’d check those three.
Update Control doesn’t touch plugin rows. It only passes filters related to automatic updates.
There is little to no risk in deactivating plugins for debug purposes. I am certain of it with Update Control. I would recommend deactivating it, to verify it’s not causing the problem.
Forum: Plugins
In reply to: [Update Control] hello – no controls visibleHave you added/modified the
AUTOMATIC_UPDATER_DISABLED
constant inwp-config.php
?Forum: Plugins
In reply to: [Update Control] email notification after upgradeI don’t have any plans to add such an option to the Plugin; however, you do appear to be on the right track. You’ve got the right filter; you just need to add
$extra_email
explicitly, rather than looking for a Plugin option.function XYZ_filter_auto_update_email( $email ) { // Create array of email addresses $recipients = array( $email['to'], '[email protected]' ); // Replace $email['to'] $email['to'] = $recipients; // Return return $email; } add_filter( 'auto_core_update_email', 'XYZ_filter_auto_update_email' );
(You might want to do some error handling. We’re assuming that
$email['to']
is still its default value (get_bloginfo( 'admin_email' )
), which may or may not be true, depending on what else might be filtering it.)Forum: Plugins
In reply to: [Update Control] WordPress 4?The Plugin does work fine in WordPress version 4.0. I just pushed a minor bugfix, and updated the Tested Up To tag, as well.
Forum: Themes and Templates
In reply to: Using pre_get_postsSo, what happens? Nothing? Something?
A couple of debugging things:
1)
ignore_sticky_posts
is Boolean, so try this instead:$query->set( 'ignore_sticky_posts', true );
2) Be sure to target only the front end, in the correct context:
All contexts on the front end:
if ( ! is_admin() && $query->is_main_query() ) { }
Just the blog posts index:
if ( $query->is_home() && $query->is_main_query() ) { }
3) Make sure you remove all references to
query_posts()
in the template, and output only the default loop instantiation.p.s. Mad? Nah. Ain’t nobody got time for that!
Hmm, so if it’s not JetPack, then I’m stumped. We kind of have to go back to square one:
1. Disable ALL Plugins
2. Switch to a core-bundled Theme (Twenty Twelve/Thirteen/Fourteen)See if the problem persists, or if you’re able to to set up a static front page the way you want to.
If you ARE able to set up your static front page, then activate your Theme again, and see if the static front page still displays properly.
If the static front page DOES still display properly, then re-activate your Plugins, one at a time, and see which one (if any) is the culprit.
Forum: Themes and Templates
In reply to: Creating my own Home Page using PHPNo worries. ??
Please see my answer in the other thread, as I’m 99% certain that JetPack is your issue.
Forum: Themes and Templates
In reply to: Creating my own Home Page using PHP(Note to OP: it makes life much easier to keep support topics in one place. ?? )
Just a stab in the dark, but: do you have JetPack installed/active?
https://jetpack.me/support/featured-content/
The Theme itself is doing nothing custom with the front page template. Installed on a clean site, it would use
page.php
to render a static site front page. However, it does include a template-part filecontent-featured.php
, that, as indicated by the instructions inreadme.txt
, uses the JetPack Featured Content module.Forum: Plugins
In reply to: [cbnet Multi Author Comment Notification] Big problem after WP UpdateWhat Theme are you using? What other Plugins are active? What are your Plugin settings, specifically with respect to Subscribed users?