DJ Posted January 17, 2011 Share Posted January 17, 2011 Hola a Todos, espero que hayan pasado bien las fiestas de fin de año 2010, bueno si alguien me puede ayudar con un problema que tengo. El problemas es el siguiente:He intentado ver en el código pero la verdad no se donde debo corregir el problema, este es el codigo que manega los rangos ha me olvide tengo 2 monedas $dollar y Q quetzal : function outputRangeDisplay() { $output = ''; $noDecimals = ($this->currency->decimals == 0 ? TRUE : FALSE); if($this->ranges != FALSE && count($this->ranges) > 0) { $output .= ' '.$this->l('Price Ranges', 'filtersearch.module').' '; foreach($this->ranges AS $range) { $rangeMin = ($noDecimals ? number_format($range['digitMin'], 2, '', '') : $range['digitMin']); $rangeMax = ($noDecimals ? number_format($range['digitMax'], 2, '', '') : $range['digitMax']); $output .= ' <input type="checkbox" name="range" value="' . $rangeMin . '_' . $rangeMax . '" /> ' . $range['min'] . ' - ' . $range['max'] . ' (' . $range['count'] . ') '; } $output .= ' '; return $output; } } Gracias por su orientación. Link to comment Share on other sites More sharing options...
PJKess Posted February 10, 2011 Share Posted February 10, 2011 Actual problem, Moldovan leu and U.S. dollarPlease HELP. Link to comment Share on other sites More sharing options...
Zombie Posted March 9, 2011 Share Posted March 9, 2011 I have the same problem with the Ukrainian hryvnia to the dollar, excess zero at the end of the price, how to reduce the number of characters after the comma? please help me Link to comment Share on other sites More sharing options...
Zombie Posted March 9, 2011 Share Posted March 9, 2011 some have any ideas ? Link to comment Share on other sites More sharing options...
Recommended Posts