• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

New Here ,
Jun 20, 2014 Jun 20, 2014

Copy link to clipboard

Copied

Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?

TOPICS
How to

Views

308

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 07, 2015 Sep 07, 2015

Copy link to clipboard

Copied

LATEST

In the large and small product .html files in the online shop folder under the develop tab you need to remove the additional code from the end of the 'var priceWithoutCurrency = price' line as below:

Original version:

var priceWithoutCurrency = price.replace( /^\D+/g, '')

Version that works:

var priceWithoutCurrency = price

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines