Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author johnh10

    (@johnh10)

    The plugin calls wp_update_post to update the post status and date. You don’t mention the plugin you’re using for FB/Google, but if they don’t have the proper hook they won’t know the post status has changed.

    I use the plugin ‘Add Link to Facebook’ on some of my sites and it works fine with the Auto Post Scheduler.

    Plugin Author johnh10

    (@johnh10)

    Let me know if this is not the case.

    jackald

    (@jackald)

    Hi,

    I am using ‘NextScripts: Social Networks Auto-Poster’
    for auto posting but it doesn’t post when republishing

    Thanks

    Plugin Author johnh10

    (@johnh10)

    I downloaded ‘NextScripts: Social Networks Auto-Poster’ to verify and they have specific code which prevents this:

    NextScripts_SNAP.php:

    if (!function_exists("nxs_snapLogPublishTo")) { function nxs_snapLogPublishTo( $new_status, $old_status, $post ) { clean_post_cache( $post->ID );
      if ( $old_status!='publish' && $old_status!='trash' && $new_status == 'publish' ) { nxs_addToLogN('BG', "*** ID: {$post->ID}, Type: {$post->post_type}", '', ' Status Changed: '."{$old_status}_to_{$new_status}".'. Autopost requested.');
        nxs_snapPublishTo($post);
      }

    You should be able to overwrite their function without much trouble.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Posting to Blog but NOT being shared to FB or GOOGLE’ is closed to new replies.