Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter gjhead

    (@gjhead)

    The main argument I would make is that more than half of the entries dumping into the “spam” folder are NOT spam. And there is no documentation anywhere as to how CF7 or this plugin decide to mark something as spam in the first place.

    Same issue – also wondering if there is a way I can manually export all the spam entries. The “Export” option disappears on the “Spam” listing.

    Also, terribly baffled as to how it marks something as spam in the first place.

    Thread Starter gjhead

    (@gjhead)

    Sure! I have a dev site that I have that I would be happy to copy over and test out for you. I may not be able to get to this until tomorrow morning (i’m on the east-coast, US). But sure – let me know what i can do to help.

    Thread Starter gjhead

    (@gjhead)

    I refreshed the permalinks and it didn’t seem to help at all. I also went through all of my custom post types and custom taxonomies and re-saved them/reviewed the settings and that did not help either.

    Luckily I updated this on a dev site, so i reverted back to my previous database and previous plugin and everything is fixed now.

    Thread Starter gjhead

    (@gjhead)

    I got it. Here’s the final code:

    <?php
    $latest = $wpdb->get_var("SELECT post_date FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_date DESC LIMIT 1");
    $latest = str_replace('-', '', substr($latest, 0, 10));
    // echo $latest;
    query_posts('m=' . $latest . '&showposts=-1');
    $wp_query->is_archive = false; $wp_query->is_home = true;
    ?>
Viewing 5 replies - 1 through 5 (of 5 total)