![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
25/06/2015, 04:24
|
![Avatar de iblancasa](http://static.forosdelweb.com/customavatars/avatar486098_1.gif) | | | Fecha de Ingreso: diciembre-2012 Ubicación: España
Mensajes: 143
Antigüedad: 12 años, 2 meses Puntos: 16 | |
Respuesta: Problema con el plugin woozone Ok, donde tienes
Código:
if( _total_price > 0 ){
_total_price = _total_price.toFixed(2);
Añade debajo
Código:
_total_price.replace (/\./g, ',');
Para que quede:
Código:
if( _total_price > 0 ){
_total_price = _total_price.toFixed(2);
_total_price = _total_price.replace (/\./g, ',');
Eso cambiará |