• Just noticed this. My Search Results shows things like this:

    This entry is part 14 of 23 in the series Words
    This entry is part 14 of 23 in the series WordsNo, I’m not talking about a system error message like Windows’ infamous “Abort, Retry, Fail?” I’m talking about active cognitive ignoring. This occurred to me as I’ve been using an electronic medical record system called DocuTAP. It has many very, very busy screens, each with […]

    See, for example:

    https://ed-informatics.org/?s=learnability

    Not sure why this is occurring, have a fairly plain-vanilla search.php (see below).

    Thanks for any thoughts.

    <?php get_header(); ?>
    <div id=”main”>
    <div id=”content”>
    <?php if (have_posts()) : ?>
    <h2 class=”pagetitle”>Search Results</h2>
    <div class=”navigation”>
    <div class=”alignleft”>
    <?php next_posts_link(‘« Previous Entries’) ?>
    </div>
    <div class=”alignright”>
    <?php previous_posts_link(‘Next Entries »’) ?>
    </div>
    </div>
    <?php while (have_posts()) : the_post(); ?>
    <div <?php post_class(); ?> id=”post-<?php the_ID(); ?>”>

    <h3 id=”post-<?php the_ID(); ?>”>
    ” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
    <?php the_title(); ?>

    </h3>


    <?php the_time(‘l, F jS, Y’) ?>

    <div class=”the-excerpt”>
    <?php the_excerpt() ?>
    </div>
    <div class=”entry-meta”>Posted in
    <?php the_category(‘, ‘) ?>
    |
    <?php edit_post_link(‘Edit’,”,’|‘); ?>
    <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
    </div>
    </div>
    <!– end post –>
    <?php endwhile; ?>
    <div class=”navigation”>
    <div class=”alignleft”>
    <?php next_posts_link(‘« Previous Entries’) ?>
    </div>
    <div class=”alignright”>
    <?php previous_posts_link(‘Next Entries »’) ?>
    </div>
    </div>
    <?php else : ?>
    <h2 class=”center”>Not Found</h2>
    <?php get_search_form(); ?>
    <?php endif; ?>
    </div>
    <!– end content –>
    </div>
    <!– end main div –>
    <?php get_footer(); ?>

    https://www.ads-software.com/extend/plugins/organize-series/

Viewing 5 replies - 1 through 5 (of 5 total)
  • I have exactly the same problem. It seems the second time is because the metadata is part of the post exerpt.

    Did you already solve it?

    Sorry for this, it’s will take too long for me to get into the technical reasons for this but the easiest way to resolve this for now is to turn off the automatic insertion of series meta information (via Organize Series options page) and explicitly use the wp_series_meta_write() function in your theme files where you want the meta information to show.

    Just installed this plugin and also have the Double line thing.

    It only shows up one when viewing an actual post, but shows up twice on my home page viewing the lists of posts.

    Is this going to be fixed or do I need to do the work around? Does the work around affect pages that aren’t part of a series?

    The workaround shouldn’t affect pages that aren’t part of a series.

    So which files do I need to add the series_meta_write thing to? Does it go in the loop somewhere and then in the individual post file?

    Thanks for any assistance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘"This entry is part…" doubled?’ is closed to new replies.