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: how to show keyword search cloud on front page  (Read 4444 times)

0 Members and 1 Guest are viewing this topic.

adeibiza

  • Coppermine newbie
  • Offline Offline
  • Posts: 19
how to show keyword search cloud on front page
« on: March 02, 2011, 04:27:21 pm »

i spent last 2 days on this and couldnt find a definitive answer so i thought i'd share it so it shows on searches

in anycontent.php replace:

Code: [Select]
starttable("100%", $lang_index_php['welcome']);

echo <<< EOT
    <tr>
        <td class="tableb">
            Here is text in the "anycontent" block.<br />
            Edit the file "anycontent.php" in your Coppermine folder to change what is shown here.<br />
            To show this block on your gallery, go to the configuration panel under "Album List View", then "content of the main page".
        </td>
    </tr>

EOT;

endtable();

with: (i removed the title but you could put one if you want)

Code: [Select]
starttable("100%");

if ($CONFIG['clickable_keyword_search'] != 0) {
    include('include/keyword.inc.php');
}

echo <<< EOT
      <script language="javascript" type="text/javascript">
      <!--
      document.searchcpg.search.focus();
      -->
      </script>
EOT;

endtable();

afterwards put anycontent in the config as described here: http://coppermine-gallery.net/demo/cpg15x/docs/en/configuration.htm#admin_album_list_content

you can see it working here www.gig-ticket.com

(i did a crude hack of the keyword.inc.php file so i could have a coloured cloud - which i'll put up if anyone wants)
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: how to show keyword search cloud on front page
« Reply #1 on: March 02, 2011, 04:32:00 pm »

Thanks for sharing your customizations. There's also a plugin that does a smiliar thing: http://forum.coppermine-gallery.net/index.php/topic,63693.0.html
Logged
Pages: [1]   Go Up
 

Page created in 0.016 seconds with 19 queries.