User galleries User galleries
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

User galleries

Started by talkpoppycock, October 24, 2011, 12:16:20 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

talkpoppycock

I would like to be able to show the users who have galleries (the users galleries main page) on the home page. Is there a setting to achieve this or possibly a mod? I have searched for this & found some referances, but no solution. Can anyone help please.

Αndré

If you want to show the user galleries on the main page, try the following solution:
Quote from: Αndré on February 09, 2011, 04:56:30 PM
Open index.php, find
                    if ($breadcrumb != '' || count($cat_data) > 0) {
                        theme_display_cat_list($breadcrumb, $cat_data, $statistics);
                    }

and replace with
                    if ($breadcrumb != '' || count($cat_data) > 0) {
                        if (isset($cat) && $cat != USER_GAL_CAT) {
                            starttable(-1, 'Benutzeralben');
                            echo "<tr><td>";
                            list_users();
                            echo "</td></tr>";
                            endtable();
                        }
                        theme_display_cat_list($breadcrumb, $cat_data, $statistics);
                    }


talkpoppycock

Worked perfectly, many thanks.
The next and obvious question is how do I get rid of the now unrequired User Galleries in the Category section?

Αndré

Do you have any other categories/albums beside the user galleries?

talkpoppycock

Yes there other categorys and I'm planning some more.

Αndré

Open index.php, find
$categories[$row['cid']] = $user_galleries;
and replace with
//$categories[$row['cid']] = $user_galleries;

talkpoppycock

Again, many thanks, worked perfectly.

Αndré

Please
Quote from: Joachim Müller on September 28, 2008, 12:46:26 PM
tag your answer as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.