Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Plugins
    In reply to: Post Teaser Bug?

    Fixed it, at least in the theme I’m using (Dusk) — index.php was missing a ” and a > as seen below:

    Original:

    <a>" title="<?php _e('Permanent link to'); ?><?php _e('Permalink'); ?></a>

    Modified:

    <a>" title="<?php _e('Permanent link to'); ?>"> <?php _e('Permalink'); ?></a>

    Forum: Plugins
    In reply to: Post Teaser Bug?

    I’ve noticed what might be the same problem with the permalinks. It looks as though that it’s missing the trailing quote at the end of the title attribute (just before it outputs the comment link).

    As a result, it’s generating:
    title="Permanent link toPermalink< /a >

    (minus the spaces before and after /a)

    Version 3.2 as seen on the author’s site didn’t seem to fix this =(

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