Hello!
Had to pull some data out of a K2 extra_fields, which stores the JSON data like "Pite\u0219ti" instead of "Pitești" (the \u0219 is the "ș" letter).
I've had a look through the cbqueryfield.php, but I don't really see where/how I'd do a str_replace to get those dumb \u0xxx translated to the proper diacriticals.
The data, as you can see, is being used for the optgroup, as:
<optgroup label="Pite\u0219ti" id="cb_studiouritot____cbf26">
<option value="beauty-chat-studio" id="cb_studiouritot____cbf27">Beauty Chat Studio</option>
<option value="black-orchid-studio" id="cb_studiouritot____cbf28">Black Orchid Studio</option>
<option value="black-buc" id="cb_studiouritot____cbf29">Black Studio (București)</option>
<option value="black-tm" id="cb_studiouritot____cbf30">Black Studio (Târgu Mureș)</option>
</optgroup>
Just need to know how/where to edit the CB Query php or js to slot in something to replace those \u0xxx codes.
Thanks!
Maria