Jump to content

Error rango de precios con el modulo Filtrer Search Comunity 2.1


DJ

Recommended Posts

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.

36963_UaoweW8AZBnzRNL5EDH3_t

Link to comment
Share on other sites

  • 4 weeks later...
  • 4 weeks later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...