• Resolved golfaccountant

    (@golfaccountant)


    The Simply Static plugin will not properly export my very simple WordPress website. I have had no issues with the plugin on other similarly built websites. When I begin a new export, it says it was successful, but the xport file is always empty. In the export log, next to each URL it says “
    Do not save or follow.” None of the website is marked as no-index as far as SEO is concerned.

    I have tried deleting and replacing the .htaccess, entering each URL as included URLs, disabling nearly every plugin, and deleting and re-installing Simply Static.

    Any and all guidance is appreciated!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author patrickposner

    (@patrickposner)

    Hey @golfaccountant,

    my bad, that is entirely on us!

    It’s because “feed” is part of our automatically excluded URL patterns.

    You can either enable “Include Feed URLs?” in Simply Static -> Settings -> General -> Include or use the following code snippet to help with that:

    add_filter( 'ss_excluded_by_default', function ( $excluded ) {
    // Remove "feed" from excluded
    if ( isset( $excluded['feed'] ) ) {
    unset( $excluded['feed'] );
    }

    return $excluded;
    } );
    Thread Starter golfaccountant

    (@golfaccountant)

    That worked! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Plugin Creates Empty Zip Export – ” Do not save or follow”’ is closed to new replies.