forum.coppermine-gallery.net

Support => Deutsch (German) => Language Specific Support => cpg1.5.x Deutsch (German) => Topic started by: Chris99 on March 07, 2016, 10:01:59 pm

Title: Suche anpassen?
Post by: Chris99 on March 07, 2016, 10:01:59 pm
Hallo zusammen,

kann man auf der Suchen-Seite unten in "Alben und Kategorie-Titel" suchen als Voreinstellung anklicken?

Vielen dank im voraus.

Christian
Title: Re: Suche anpassen?
Post by: Αndré on March 08, 2016, 12:32:44 pm
Öffne search.php, finde
Code: [Select]
                                        <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>&nbsp;</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>&nbsp;</td>
                                        </tr>
und ersetze es durch
Code: [Select]
                                        <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>&nbsp;</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>&nbsp;</td>
                                        </tr>