Log in

View Full Version : Social Goups' Icons


Blunks
03-07-2009, 02:36 PM
Hey,

I've seen a thread on here, earlier, with no answers.

Is there away to display a default icon for all newly made Social Groups, which will then change when the user uploads one? I don't like the way you can see the alt tag when there is no image.

Thanks Guys.

Lynne
03-07-2009, 03:37 PM
It is like that... at least in 3.8.

Blunks
03-07-2009, 05:00 PM
Got it!

But how can you make it show up in the random lists and stuff?

Lynne
03-07-2009, 05:07 PM
Not tested!!!

Find in functions_socialgroup.php:
// Fetch a random group
if ($randomgroup = fetch_socialgroup_random_group())
{
$randomgroup = prepare_socialgroup($randomgroup);
}

And change to:
// Fetch a random group
if ($randomgroup = fetch_socialgroup_random_group(true))
{
$randomgroup = prepare_socialgroup($randomgroup);
}

(maybe put true in parenthesis if that doesn't work, ie 'true')

Blunks
03-07-2009, 05:17 PM
Seems to have got it working, thanks loads Lynne!