Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Relevanssi is fully UTF-8 compatible. I tried to see if I could reproduce the error, but actually WP doesn’t even let me use & aacute ; – it’s automatically converted to á, which Relevanssi can handle just fine.

    What kind of encoding is your site using? Where are the characters being encoded with the entities? Relevanssi doesn’t do that, and would prefer to get unencoded characters.

    Thread Starter Martin Hynek

    (@martascz)

    I can see it on Most common words in the index… And then in stopwords…

    Yeah characters are converted, but when index is created it seems that during the indexing process Relevanssi access pages on source code level – if i can say it like that..

    Relevanssi splits words which containts these characters… like on screenshot..

    Characters are inside posts..

    db tables are utf8_czech_ci collation, wordpress uses utf-8 charset ..

    Plugin Author Mikko Saari

    (@msaari)

    There’s something unusual going on in your site – I don’t see that happening on my sites, and can’t reproduce the error.

    When indexing, Relevanssi reads posts with get_post(), nothing weirder than that, and doesn’t convert anything by itself –?so those encoded entities are what Relevanssi gets.

    Try this:

    add_filter('relevanssi_post_content', 'rlv_fix_encoding');
    function rlv_fix_encoding($content) {
        return html_entity_decode($content);
    }

    Add this to functions.php and reindex. Does that help?

    Thread Starter Martin Hynek

    (@martascz)

    It seems that it fixed the problems ?? Thx a lot ??

    Can i have other question when it shows result of search, template is broken.. every time it looks like different and not right… I found some topic with this problem, but can’t find it now… Its probably caused by template or some strange interpretation of result…

    Any tip with this?

    Plugin Author Mikko Saari

    (@msaari)

    Which theme are you using? What kind of problems your template has? Does it have the same problems without Relevanssi?

    Thread Starter Martin Hynek

    (@martascz)

    Well i’m using Grandcollege – premium theme.. No other problems with template.. Without Relevanssi its all ok, no problems…

    With Relevanssi it seems that somehow Relevanssi brokes footer and merge styles with it..

    Plugin Author Mikko Saari

    (@msaari)

    Does the problem go away if you disable highlighting in search results? Modernize theme has a similar problem: the theme truncates the excerpt and if Relevanssi has highlights in the excerpt, a HTML tag may get truncated, causing problems.

    Thread Starter Martin Hynek

    (@martascz)

    Well yeah, you’re correct, same problem with highlighting… Thx a lot for help ??

    Plugin Author Mikko Saari

    (@msaari)

    Modernize has a method to adjust the length of the excerpt – set it to very long, and there’s no problem, as Relevanssi will then set the real length of the excerpt and Modernize then won’t cut in the middle of a HTML tag. Perhaps your theme has something similar as well, so you don’t have to remove highlights completely.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Encoding problems’ is closed to new replies.