• I recently tried to install this plugins but once activated I started to throw the following errors
    Warning: Missing argument 2 for Jetpack_Sync_Module_Posts :: send_published () in /wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php on line 189

Viewing 2 replies - 1 through 2 (of 2 total)
  • This might help:

    https://aristath.github.io/blog/wp-hide-php-errors

    Worked for me with a plugin I was having the same problems with.

    The conflict between Jetpack and this plugin is because of the following line

    do_action('wp_insert_post', 'wp_insert_post');

    in inc/form-action.php

    Which is being loaded on very page. I don’t know much about how the plugin works but the above action is missing the post ID, Post object.

    it should look something like
    do_action( 'wp_insert_post', $post->ID, $post, true );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pet administrator incompatible with jetpack.’ is closed to new replies.