<em>@7of9 499557 wrote:</em><blockquote>PM send. Thanks for your help.</blockquote>
It’s very strange with the problem on your site but you can use this way to fix the problem on your site
+ Create templates/ja_fixel/html/com_search/search/ folder
+ Copy plugins/system/t3/base/html/com_search/search/default_form.php file
+ Paste to templates/ja_fixel/html/com_search/search/ folder
+ Open default_form.php file find and remove script below
<?php if ($this->params->get('search_areas', 1)) : ?>
<fieldset class="only">
<legend><?php echo JText::_('COM_SEARCH_SEARCH_ONLY');?></legend>
<?php foreach ($this->searchareas['search'] as $val => $txt) :
$checked = is_array($this->searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : '';
?>
<label for="area-<?php echo $val;?>" class="checkbox">
<input type="checkbox" name="areas[]" value="<?php echo $val;?>" id="area-<?php echo $val;?>" <?php echo $checked;?> >
<?php echo JText::_($txt); ?>
</label>
<?php endforeach; ?>
</fieldset>
<?php endif; ?>
Let me know if it helps