Popular posts – based on pageviews
Popular posts – based on pageviews
Popular posts – based on pageviews
Use the code given below, In this code we are checking if page is ‘jetpack’ and based on that showing custom error message. add_action( ‘admin_init’, ‘restrict_page’ ); function restrict_page() { if ( class_exists( ‘Jetpack’ ) && !current_user_can( ‘manage_options’ ) ) { if ( isset( $_GET[‘page’] ) && $_GET[‘page’] == ‘jetpack’ ) { wp_die( ‘no access’ … Read more
Well, I really should’ve done this to begin with, but I took a look at my NGINX logs while the infinite scroll would hang, and it turns out the NAXSI web application firewall module I’m using in NGINX is blocking infinite scroll due to anti-XSS/ant-SQL injection policies. Specifically it’s because of square brackets and usage … Read more
Just deactivate your Jetpack plugin and again activate JetPack plugin, your issue will be solved. Same issue happened with me and solved with active/deactivate plugin. Second way inside jetpack setting find shortlink and enable/disable. Hope this will be help.
After consideration, I decided to take backup of wp-content/plugins/jetpack and then delete jetpack folder, after that I installed the latest version with out any problem. I hope this will help you. For more information please check
Just found the answer after exploring the MySQL database and finding the right field. Here is an answer from Ryan Cowles at the Jetpack staff: The HTML version of your post is stored in post_content and the Markdown version is stored in post_content_filtered. You can see how it’s stored here. Specifics aside, if you write … Read more
Is your web site publicly available? Do you have CURL enabled on your site? Either situation might cause your issue. If the above is not helpful, then provide more details in a comment to your question, or edit the question. Provide enough details so others will know exactly what you did, and what went wrong.
Use this code in child theme or custom snipets plugin: /** * Top Posts Widget: add post views below each post. */ function jetpackme_add_views_top_posts( $post_id ) { if( function_exists( ‘stats_get_csv’ ) ) { $stats_query = “page_stats_for_” . $post_id; if ( false === ( $special_query_results = get_transient( $stats_query ) ) ) { $stat_options = “post_id=”.$post_id.”&days=-1″; $post_stats … Read more
Publicize in Jetpack stopped working on Custom Post Type it works in Blog Posts
How to remove Stats by jetpack dashboard widget?