Open GoogleCodeExporter opened 9 years ago
It's not a real bug, it's just not implemented for the moment.
I'll give a look, if I can do something for this
Original comment by antoin...@gmail.com
on 16 Dec 2010 at 6:48
well I don't know if your still interested.
But only 'checked' images are displayed. you have 2 choices :
1) Check the images that you want to display
2) change some line in 2 files to display all public images.
for the 2) : 1st file : index.phtml in modules\default\themes\default.
line 37 : $tmp = $images->getimages(array('checked' => 1,'public'=>1),$ob, $od,
0, 1);
replace by : $tmp = $images->getimages(array('public'=>1),$ob, $od, 0, 1);
line 63 : $imgs = $images->getimages(array('checked' => 1,'public'=>1),$ob,
$od, 0, $this->app->config->home_page_images);
replace by : $imgs = $images->getimages(array('public'=>1),$ob, $od, 0,
$this->app->config->home_page_images);
2nd file :
Line 51 : $simgs = $images->getimages(array('checked' => 1'public' => 1),
$orderby, $orderdir, 0, $this->app->config->sidebar_images);
replace by : $simgs = $images->getimages(array('public' => 1), $orderby,
$orderdir, 0, $this->app->config->sidebar_images);
That's all
Original comment by antoin...@gmail.com
on 21 Dec 2010 at 5:58
Hi
What was the name of the second file we need to edit?
You wrote "2nd file: " but did not specify what file you were referring to.....
Please advise and thank you for the above code :)
Original comment by tamarg...@gmail.com
on 7 Feb 2012 at 8:08
Original issue reported on code.google.com by
zcrai...@googlemail.com
on 21 Mar 2010 at 8:28Attachments: