Delete old JetPack Site Stats? encrypted_search_terms in top search terms [closed]
From the official developers: “The site stats are maintained by wordpress.com, not your own site, therefore, there is no way to delete old stats”
From the official developers: “The site stats are maintained by wordpress.com, not your own site, therefore, there is no way to delete old stats”
The problem was that I call imagesLoaded on the Isotope grid itself, instead of the newly added items. I changed only the event that triggers when new items were added to wait until the images of the newly added posts are loaded, then append them to the isotope layout. infinite_count = 0; // Triggers re-layout … Read more
It seems that your Urchin is configured to measure hits on your server instead of page views (this is speculation since I do not have the link to your site). The high number could only be explained by the fact that one pageview would require multiple elements on your site (js files, css files, images, … Read more
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
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
$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
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
You don’t really need Jetpack to edit custom CSS on your site. WordPress supports this out of the box You can head to Appearance -> Customize where’ll you see a section to add Additional CSS: You need at least WordPress 4.7 and the edit_css capability to see this section. By default this capability maps to … Read more
Third party plugins (yeah, including jetpack) are off topic on WPSE, but well, here you go: Jetpack has a filter jetpack_get_available_modules, which lets you edit the array of active modules. You can disable a module by unsetting it from the array, or enable it by adding it. Here’s how to enable a single module, ‘sharedaddy’: … Read more
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