Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Suche anpassen?  (Read 2515 times)

0 Members and 1 Guest are viewing this topic.

Chris99

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 26
Suche anpassen?
« 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
Logged

Αndré

  • Administrator
  • Coppermine addict
  • ****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Suche anpassen?
« Reply #1 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>
Logged
Pages: [1]   Go Up
 

Page created in 0.018 seconds with 19 queries.