Hi,
twitter/functions.php:
1.- Locate this:
echo '<option></option>' ;
while( osc_has_categories() ) {
and replace it with:
echo '<option></option>' ;
echo '<option value="">' . __('All categories', 'twitter') . '</option>';
while( osc_has_categories() ) {
2.- Locate:
echo '<option></option>' ;
while( osc_has_list_regions() ) {
and replace with:
echo '<option></option>' ;
echo '<option value="">' . __('All regions', 'twitter') . '</option>';
while( osc_has_list_regions() ) {
Regards