This is the second time ive came across this, im not experienced in php but I have a line that goes to a drop down box to select multiple options but I want the default text to say something different then All Manufacturers.
I tried changing TEXT_ALL_MANUFACTURERS to TEXT_HEALTH_CONCERNS but that did not work it displayed TEXT_HEALTHY_CONCERNS.PHP Code:echo tep_draw_hidden_field('manufacturers_id', $HTTP_GET_VARS['manufacturers_id']);
$options = array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES));
} else {
echo tep_draw_hidden_field('cPath', $cPath);
$options = array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS));
}
Does it tie in with an sql database or is TEXT_ALL_MANUFACTURERS being called somewhere else?
Thanks







Bookmarks