Hallo zusammen,
kann man auf der Suchen-Seite unten in "Alben und Kategorie-Titel" suchen als Voreinstellung anklicken?
Vielen dank im voraus.
Christian
Öffne search.php, finde
<tr>
<td><input type="checkbox" name="album_title" id="album_title" class="checkbox" /><label for="album_title" class="clickable_option">{$lang_search_php['album_title']}</label></td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" name="category_title" id="category_title" class="checkbox" /><label for="category_title" class="clickable_option">{$lang_search_php['category_title']}</label></td>
<td> </td>
</tr>
und ersetze es durch
<tr>
<td><input type="checkbox" name="album_title" id="album_title" class="checkbox" checked="checked" /><label for="album_title" class="clickable_option">{$lang_search_php['album_title']}</label></td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" name="category_title" id="category_title" class="checkbox" checked="checked" /><label for="category_title" class="clickable_option">{$lang_search_php['category_title']}</label></td>
<td> </td>
</tr>