Quote Originally Posted by stevesh View Post
BOX_HEADING_SEARCH1 doesn't exist in a stock Zencart installation, so it must be something your custom template has added. Check the files from the template to see if there's supposed to be a file in includes/languages/english/extra_definitions/YOUR_TEMPLATE.
nothing in there

but if i go to /public_html/includes/templates/theme568/common/

and edit tpl_header.php

I can see the code for BOX_SEARCH

Code:
<div class="search">
					<!-- ========== SEARCH ========== -->
					<?php echo zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');?>
					<?php 
						echo zen_draw_hidden_field('main_page',FILENAME_ADVANCED_SEARCH_RESULT);
						echo zen_draw_hidden_field('search_in_description', '1') . zen_hide_session_id();
					?>
					<?php echo zen_draw_input_field('keyword', '' . BOX_HEADING_SEARCH1 . '', 'class="input1" onblur="if(this.value==\'\') this.value=\'' . BOX_HEADING_SEARCH1 . '\'" onfocus="if(this.value ==\'' . BOX_HEADING_SEARCH1 . '\' ) this.value=\'\'"');?>
					<?php echo zen_image_submit ('search.gif', HEADER_SEARCH_BUTTON, 'class="input2" ');?>
					</form>
				<!-- ============================ -->
				</div>

if i edit
Code:
<?php echo zen_draw_input_field('keyword', '' . BOX_HEADING_SEARCH1 . '',
it changes whats displayed in the search box, but dont know if this is correct or effecting anything.