Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #428980

    even if i use the html entities for it
    ö = ö
    ü= ü
    etc
    they are not shown in the right manner !

    #429386

    Hey Guenter!

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #429483
    This reply has been marked as private.
    #429487

    i found something in class-framework-widgets.php
    line: 1331
    the utf-8 is mentioned here with json_encode – this is i guess the point.
    But i don’t know how to handle it.

    • This reply was modified 8 years, 11 months ago by Guenni007.
    #429542

    well in the database options (widget_text and widget_avia_google_maps) the data is ö in Plöck

    so i suppose it has to do with json_encode

    #429553
    This reply has been marked as private.
    #430085

    Hey!

    The ö is displaying fine on my end: http://imgur.com/nHvTF8k. Did you manage to get it fixed?

    Cheers!
    Rikard

    #431148

    hey Rikard – not the ö in the text widget is meant.
    please open the bubble info of the POI google maps widget in the socket (4th column)

    and in addition the content of the bubble is surrounded by quotation marks, which are not set by me. Every bubble content is in between quotation marks.

    • This reply was modified 8 years, 11 months ago by Guenni007.
    #431943

    Hey!

    did you try with utf-8 code? here you can find a list: http://www.periodni.com/de/unicode_utf-8-codierung.html

    Hope this helps. If not I would ask the Google team, as they know their functions best.

    Regards,
    Andy

    • This reply was modified 8 years, 11 months ago by Andy.
    #432052

    thanks Andy – yes i tried that –
    it only leads on the frontend to that special output
    And as you can see one post under this on pages and posts it works all nice !!!
    Only in the widget it does not function. My thougts go to a conflict with ajax and the javascript. The widget has its own javascript – so maybe there is a mistake in it! AND
    what about the quotation marks – maybe this could be the fault !
    why is everything in that bubble automatically framed by these quotation marks ? (in posts and pages not !)

    edit: btw. the & is automatically changed to …you know what i mean &
    so the UTF-8 code doesn’t work

    • This reply was modified 8 years, 11 months ago by Guenni007.
    #432095
    This reply has been marked as private.
    #432334

    on the source code in the javascript before there is:

    you see the quotation marks and that the & is also translated/encoded – therefore i guess no translation for the ö

    • This reply was modified 8 years, 11 months ago by Guenni007.
    #433714

    Hi!

    did you try with a default WordPress theme?

    Cheers!
    Andy

    #434009

    ??? this is the enfold installed Google Maps Widget
    and that is the reason why i asked here . On pages/posts all is fine – even the bubblecontent !
    in widget there are these automatically added quotation marks and the German Umlaute do not work at all.

    #434119

    is it a bug ?

    its only the widget so i started to look to : class-framework-widgets.php

    on line 1331 change from for the umlaute trouble
    $content = json_encode(utf8_encode($content));
    to
    $content = json_encode($content);

    on line 1385 for the quotation marks trouble:

    var contentString = '".$content."';
    to
    var contentString = ".$content.";

    #434129
    This reply has been marked as private.
    #434876

    Hi!

    thanks a lot for sharing your solution with us. We will inform Kriesi about it.

    Best regards,
    Andy

    #436075

    Hey!
    thanks, added to the next update ;)
    Best regards,
    Kriesi

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc.’ is closed to new replies.