Questions tagged [jetpack]

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

167 questions
11
votes
1 answer

Wordpress Subscriptions in laravel (corcel)

I have 2 projects, one in Wordpress, and the other one in Laravel 4.2. Recently i had to merge both projects into one Laravel 4.2 App using jgrossi/corcel. This was my only option. Everything works fantastic! I can even post directly into Wordpress…
Ivan Bravo Carlos
  • 1,340
  • 2
  • 12
  • 21
9
votes
2 answers

How to make BaseFragment with View Binding

My BaseFragment: abstract class BaseFragment : Fragment() { protected abstract val viewModel: ViewModel private var _binding: Binding? = null protected val binding get() = _binding!! …
Alis Abenov
  • 239
  • 2
  • 8
7
votes
0 answers

Repositioning JetPack's comment subscription box within WooCommerce

I'm using WooCommerce and also utilising JetPck for a couple of things, one being it's comment subscription functionality. Now, last time I checked it was displaying this fine, but I just now noticed that the "comment subscription box" you see when…
Brett
  • 16,869
  • 50
  • 138
  • 258
7
votes
3 answers

Modify WordPress Jetpack Plugin To Use 'Class' Instead Of An 'ID' Attribute

What I am trying to achive: Enable seamless & simultaneous infinite scrolling for multiple columns on the same page, each of which is pulling in a different set of content i.e. one column shows the latest posts, while the other shows the latest…
its_me
  • 10,289
  • 23
  • 78
  • 126
6
votes
1 answer

postman jetpacks - testing for nested data

I have a test in postman and the response comes back with 'nested' data. By that I mean we have a 'data' section of the response and a 'messages' section. Inside data there are a ton of other fields and those are the ones I need to be verifying on…
besaidAuroch
  • 61
  • 1
  • 5
5
votes
0 answers

Wordpress Jetpack Infinite Scroll returning {"type":"empty"}

I've installed Wordpress Jetpack and configured everything in my functions.php, but for some reason it's not working. I've followed these instructions, and those on the Jetpack website, but nothing seems to load in... Developer tools show the AJAX…
Chuck Le Butt
  • 43,669
  • 58
  • 179
  • 268
5
votes
2 answers

Using Jetpack Portfolio Project in WordPress child theme does not call archive custom template

I have a child theme that uses the new Jetpack Portfolio Project custom post type and wish to modify archive.php to display custom results. I'm using: WordPress v3.9.2; Theme: Child of Point, Jetpack is installed with Custom Content Types enabled,…
user145959
  • 51
  • 3
5
votes
2 answers

Activating the JetPack WordPress plugin when running on Heroku?

I get the following error when attempting to activate the JetPack plugin on my WordPress instance I have running on Heroku. Jetpack could not contact WordPress.com: register_http_request_failed. This usually means something is incorrectly configured…
jaxzin
  • 11,591
  • 4
  • 16
  • 19
4
votes
2 answers

Wordpress xmlrpc.php 301 Moved Permanently

I have a site setup on Digital Ocean using their Wordpress droplet installer. I have then installed Jetpack. The Site Health tool reported that Jetpack is not connected and that I should visit the Jetpack.com debugger. I did so and put my website…
Mark Johnson
  • 493
  • 4
  • 16
4
votes
1 answer

Run Postman jetpack test thought Newman commands

I'm using the Postman Jetpacks tests collections, they work very well, but I must run the test inside the Postman application. Actually I need to run the tests I designed in Postman Jetpack using a command line to make it scriptable. My approach is…
Manjar
  • 2,849
  • 27
  • 39
4
votes
1 answer

Wordpress - Jetpack infinite scroll "post-load" event not firing

I recently started playing around with the infinite scroll feature of the wordpress jetpack plugin. It seems to work ok, but I'm trying to integrate with Masonry, so I need to use the post-load event that's supposed to fire when Jetpack loads more…
ant
  • 747
  • 1
  • 8
  • 17
3
votes
0 answers

Wordpress MYSQL Deadlock every couple days

I have a WordPress site running on an Amazon EC2 instance, and for the past couple weeks the site has been crashing early in the morning about every 3-4 days. I took a look at Apache and MYSQL logs and it looks like I am having a recurring…
Peter Milionis
  • 103
  • 1
  • 6
3
votes
2 answers

How to get list of categories of a wordpress blog using wordpress REST api

First of all i know it is a theoretical question and it contains no code but actually this time i don't have code, i need your suggestion on this issue. Question: Is it possible to fetch the name of all categories from a wordpress.com blog or a…
Peeyush
  • 4,458
  • 14
  • 59
  • 89
2
votes
0 answers

Sorting by most views/popular posts in Wordpress with Elementor plugin and custom query difficulty

I have this code: // Posts or Portfolio Widget add_action( 'elementor/query/my_custom_filter', function( $query ) { // Modify the posts query here } ); source: https://developers.elementor.com/custom-query-filter/ and need to call…
chaimsem
  • 31
  • 4
2
votes
3 answers

Disable Jetpack Carousel on specific pages in WordPress

I'm trying to disable Jetpack Carousel on a specific post ID using the following code in my functions.php function djcoh_disable_carousel( $value ) { wp_reset_query(); if ( is_page( 614 ) ) { $value = true; // true to disable…
rmbaumer
  • 35
  • 1
  • 8
1
2 3
11 12