In the basket/checkout/search results our site is displaying a ? rather than a £. Any ideas what is causing this?
The problem is that your webserver is using 'Unicode' (UTF) as the default character set, but it should be using ISO. You need to ask your web host to edit the web server config file for your Apache server and change:
AddDefaultCharset UTF8
to
AddDefaultCharset ISO-8859-1
The problem is that your webserver is using 'Unicode' (UTF) as the default character set, but it should be using ISO. You need to ask your web host to edit the web server config file for your Apache server and change:
AddDefaultCharset UTF8
to
AddDefaultCharset ISO-8859-1