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: Files order by Album  (Read 2950 times)

0 Members and 1 Guest are viewing this topic.

_clark_

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Files order by Album
« on: November 30, 2006, 04:21:07 pm »

Hi,

when I upload an image I have to select the album where I want to put it.

The albums are included in the respective categories... Is possibile to see only the Album order by name and not the categories?

It would be simpler to insert the photos...

Thank you very much...
Logged

Hein Traag

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: nl
  • Offline Offline
  • Gender: Male
  • Posts: 2166
  • A, B, Cpg
    • Personal website - Spintires.nl
Re: Files order by Album
« Reply #1 on: November 30, 2006, 04:24:51 pm »

As far as my coding skills go i think it is this section in searchnew.php which needs editing.

Code: [Select]
// Create the nicely sorted and formatted drop down list
        $alb_cat = '';
        foreach ($listArray as $val) {
            if ($val['cat'] != $alb_cat) {
          if ($alb_cat) $select .= "</optgroup>\n";
                $select .= '<optgroup label="' . $val['cat'] . '">' . "\n";
                $alb_cat = $val['cat'];
            }
            $select .= '<option value="' . $val['aid'] . '"' . ($val['aid'] == $sel_album ? ' selected' : '') . '>   ' . $val['title'] . "</option>\n";
        }
        if ($alb_cat) $select .= "</optgroup>\n";
    }

    return "\n<select name=\"$id\" class=\"listbox\">\n$select</select>\n";
}

Don't have time to try something at this moment. Will try later on.
In the meantime, should you want to try anything yourself.. make a backup of the file first.

Hein
« Last Edit: December 07, 2006, 03:31:46 pm by Hein »
Logged

_clark_

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Files order by Album
« Reply #2 on: November 30, 2006, 04:38:56 pm »

Ok... I'll try... the problem is that i'm italian so the search is not so easy... I hope to find it.

thank you...

If you know some discussion that can help me please write here the link...

Logged

_clark_

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Files order by Album
« Reply #3 on: December 06, 2006, 06:16:28 pm »

Sorry, I didn't find what i'm looking for...

Anyway, where can i find info that could help me?

Thank you very much...
Logged

_clark_

  • Coppermine newbie
  • Offline Offline
  • Posts: 9
Re: Files order by Album
« Reply #4 on: December 08, 2006, 12:04:22 pm »

Thank You very much....
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Files order by Album
« Reply #5 on: December 08, 2006, 05:42:11 pm »

Logged
Pages: [1]   Go Up
 

Page created in 0.022 seconds with 17 queries.