Hi,
I am using the extremely popular Disable Comments plugin on my site. After installing your theme though, I now see this warning (when debug mode is on):
Notice: Undefined index: WP_Widget_Recent_Comments in /var/www/wp-content/themes/x/framework/functions/setup.php on line 213
This arises because Disable Comments prevents the file that defines WP_Widget_Recent_Comments from being require_once
d.
Is there any way you can modify your x_remove_recent_comments_style
function to return immediately if !key_exists('WP_Widget_Recent_Comments', $wp_widget_factory->widgets)
?
As Disable Comments has over 1 million active users, I would imagine I won’t be the only person to run into this, and it’s an exceedingly simple fix.
Thanks