Remove search range slidebar and pop calendar

Is someone knows how to remove search range slidebar and pop calendar ?

For example : date of birth in search is a range and I want users to enter manually the range like 18-72  instead of range selection because my skin is dark and the slider doesn't appear very well.

Also I want users to enter date of birth manually instead of a popup calendar.

What file or script can I modify to avoid the pop calendar or slidebar to appear ?

Quote · 9 Sep 2010

I finally found out :

 

REMOVE POPUP CALENDAR

inc/classes/BxDolProfileFields.php

• FIND

case 'date':     $aInput['type'] = 'date';     $aInput['value'] = $aValues[$iPerson]; break;

// Change to

case 'date':     $aInput['type'] = 'number';     $aInput['value'] = $aValues[$iPerson]; break;

(do it 2 times)

 

REMOVE DOUBLERANGE

inc/classes/BxDolProfileFields.php

• Find

case 'range':
$aFormInput['type'] = 'doublerange' ;

// Change to

case 'range':
$aFormInput['type'] = 'number';

Quote · 11 Sep 2010

I dont undestand why but somehow this does not work in crome, opera and safari.

Anybody know how to make it work in all browsers?

Quote · 21 Oct 2011

Not that i have solved the problem but i have found the reason why my calendar was not functioning anymore.

http://www.boonex.com/forums/topic/Top-Menu-Question-.htm

Hope somebody knows why the calendar aint fuctioning anymore when i change the header like explained in the link above.

Quote · 21 Oct 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.