Shortcode not working in Jetpack Top Posts & Pages widget
Shortcode not working in Jetpack Top Posts & Pages widget
Shortcode not working in Jetpack Top Posts & Pages widget
Show views count for pop up post
Hooked into wp_get_attachment_caption to add content to the default description; not working for jetpack slideshow. Why?
Publicize in Jetpack stopped working on Custom Post Type it works in Blog Posts
How to remove Stats by jetpack dashboard widget?
Failed to import “File name”: Invalid post type jetpack-portfolio
Yes, you can safely deactivate the old wordpress.com stats Plugin. Once you verify that your historical data have been retained, you can safely delete the Plugin.
However, I only need the widget function: a widget in the sidebar with a small form to subscribe via e-mail There is a widget to do. On your site’s widgets configuration page, search for “Blog Subscriptions (Jetpack)” and drag it to an active sidebar.
The most common complaint I’ve heard is that it’s bloated with too many plugins. You can try the Jetpack Lite plugin to avoid that however. http://wordpress.org/extend/plugins/jetpack-lite/ As for their business motivation, I can’t give a definitive answer. I’d venture to say it’s related to being a freemium service as they state in their FAQ: Jetpack … Read more
Put this into your functions.php file: function userfunc_get_post_views($postID) { global $post_stats; foreach ( $post_stats as $p ) { if ( $p[‘post_id’] == $postID ) { ?> <span class=”stats-post-views”> <?php echo number_format_i18n( $p[‘views’]) . ‘ views’; ?> </span> <?php } } } and then into your single.php file where you want the views to be displayed: … Read more