• My client has an & in their name as in G&R… This was appearing in the POS as “G & amp; R” (split to stop the browser changing it back to &!), Same for products and category names e.g. Air Con & Heating.

    Looks like names are being inappropriately escaped. I fixed the company name in frontend.php:

    //AL:'SITE_NAME' => esc_js(get_bloginfo('name')),
    //AL:'STATION_NAME' => esc_js($station->post->post_title),
    'SITE_NAME' => get_bloginfo('name'),
    'STATION_NAME' => $station->post->post_title,

    However, can’t see a way to remove the escaping of product/category names for display. Any ideas?

    • This topic was modified 4 years, 1 month ago by regisit.
    • This topic was modified 4 years, 1 month ago by regisit.
  • The topic ‘Various names being escaped’ is closed to new replies.