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

    (@scribu)

    The problem is that the theme is using the_title() instead of the_title_attribute().

    See https://scribu.net/wordpress/front-end-editor/common-mistakes-in-themes.html

    Hey, thx. for the quick response. Worked… Great.

    I’ve this problem with Seo Ultimate plugin.

    Some soltuion?

    Thanks.

    Not an ideal fix since it will disappear upon updating the plugin, but you can fix the SEO Ultimate problem but going into the more-links.php file and on line 41 change

    $newtext = str_replace('{post}', su_esc_html(get_the_title()), $newtext);
    to
    $newtext = str_replace('{post}', get_the_title(), $newtext);

    Alternatively, if you don’t mind not having the post title in the more link, you can go into SEO Ultimate’s Misc options and just change the More Link Customizer to something that doesn’t have “{post}” in it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Front-end Editor] Plugin bug: Title tag not closed properly’ is closed to new replies.