Force Jetpack to not use og:image tag for favicon / Site Icon [closed]

Probably through Jetpack, yet I’m not sure Looking at your site now I can say that those open graph tags are from Jetpack Plugin. If there is no image available in the post , Jetpack adds site-icon/favicon as the default one. We can control output of tags using filters jetpack_open_graph_tags jetpack_images_get_images jetpack_open_graph_image_default jetpack_enable_open_graph Remove only … Read more

Pageview confusion [closed]

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 email sharing button to include image on email sent

wp_mail does not support rich formatting, so you can’t just embed the image in the body. It does, however, support attachments. If you read about the function, you’ll see it has a parameter for attachments. Try hooking your attachment there instead: http://codex.wordpress.org/Function_Reference/wp_mail $attachments (string or array) (optional) Files to attach: a single filename, an array … Read more

how to disable jetpack for non admins?

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