Why Jetpack is missing the “Feedbacks” menu item? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question Is there a … Read more

API for Post Stats for Self-Hosted WordPress using JetPack [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question EDITED for Clarification … Read more

JetPack Infinite Scroll not working on custom theme

I have a custom theme where I’ve tried to integrate the Infinite Scroll option within JetPack. Per this article, I’ve added the following code to functions.php (in addition to activating the module) – <?php add_theme_support( ‘infinite-scroll’, array( ‘container’ => ‘content’, ‘footer’ => ‘page’, ) ); ?> The live site can be found here. My problem … Read more

How do I update the site URL used by Jetpack subscribe widget [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third party plugins and themes are off topic, they are better asked about at their developers’ support routes. Closed 6 … Read more

Moving sharedaddy buttons (in Jetpack) to the top of a post?

How would one move the sharedaddy buttons included in Jetpack to be placed before a post’s or page’s content, rather than after it? I see that in sharing-service.php the function that prints the buttons is hooked to the_content filter hook: add_filter( ‘the_content’, ‘sharing_display’, 19 ); I’m not sure what to place in my functions.php file … Read more

How can I show the Jetpack Subscriptions form in a page? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question In the Jetpack plugin, the subscriptions module can be included in your blog by following these instructions: To use the Subscriptions … Read more

How can I remove the new stats message? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I’ve recently (latest update) been welcomed to my stats page with this annoying message: Can anyone tell me how to remove … Read more

Implications of changing wordpress.com associated with Jetpack [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Our corporate blog has the Jetpack plugin and it is associated with my personal wordpress.com account. I’d like to change it … Read more

Jetpack Infinite scroll conflicting with theme’s pre_get_posts custom posts_per_page

I have the current function on my theme using pre_get_posts, currently right at the bottom of my theme’s functions.php file: function mytheme_portfolio_archive_pages( $query ) { if ( is_admin() || ! $query->is_main_query() ) return; if ( is_post_type_archive( ‘mytheme_portfolio’ ) ) { // Display 20 posts for a custom post type called ‘mytheme_portfolio’ $query->set( ‘posts_per_page’, 20 ); … Read more