Jetpack ‘Blog Subscription’ widget doesn’t add emails to

Jetpack’s Subscriptions feature relies on WordPress.com. The emails sent via the feature are not sent from your own server, but from WordPress.com. You will consequently want to contact the Jetpack support team via this contact form. They are the only ones who can investigate more by looking at logs on WordPress.com. You will want to … Read more

Jetpack Connection Broken [closed]

Oops. OK, I figured it out. I’ll blame it on UX: there is a button on Jetpack’s very ornate admin page which allows you to connect and disconnect from WordPress.com. But the button is very closely matched to the colour of the background, and the microcopy is a little confusing. But I’ll cop to a … Read more

How To Remove The Filter That Adds JetPack Related Content To Dom [closed]

$jprp = Jetpack_RelatedPosts::init(); remove_filter( ‘the_content’, array( $jprp, ‘filter_add_target_to_dom’ ) ); Should work fine. The Jetpack_RelatedPosts init function implements the singleton pattern, so calling it will return the already instantiated instance, which you can use to remove the filter. Just make sure you call your code late enough. The main module is hooking the add_action to … Read more

How to delete Jetpack Widgets from the Widgets page in admin panel [closed]

This is not an alteration to the Plugin itself, it’s just a way to revert what is already done. So, to Activate a plugin there’s a WordPress function: register_widget(‘Class_of_the_Widget’); As we can unregister the default plugins using the unregister_widget() function, we can use the same function for JetPack plugin’s widgets too. Get into the /wp-content/plugins/jetpack/modules/widgets, … Read more

I’m think I’ve found a bug with JetPack 1.7 [closed]

Jetpack support kindly replied: This could be an issue with the After the Deadline module. When you update a post, WordPress makes a call to the service (service.afterthedeadline.com) to spellcheck your content, and it seems an error occurs during the connection. Could you try deactivating the Spelling and Grammar module Disabling it DID fix the … Read more