Page 1 of 1

Diferent thumbs size & display coordinates button?!

Posted: 17 Aug 2009, 15:20
by webcro
Hi Jan, hi everybody!

Great work, stunning scripts. Blessings to be in the developers community, best thanks for sharing.

I'm working on a few projects related to construction, land registration etc. business. Dynamic galleries, libraries would be of great help, so I've tryed Phoca. Hope to get to the point as to cash some in, and to be in the position as to payoff too. For the moment I'm only struggling to get them working, configured, customized...

3 issues (for the moment...):
  • 1. There is some width on the left column, and the default small size thumb leaves some considerable space in the random image module... Isn't there any setting in the module's configuration to opt for medium/ large thumbs size?!
  • 2. I'd like to have the geocoordinates button besides the Image Display icon, but again I don't find the setting;
  • 3. Is there any known issue for IE8 because in my browser it gets locked on the shadowbox background?
Regards.

Re: Diferent thumbs size & display coordinates button?!

Posted: 17 Aug 2009, 18:23
by Jan
Hi,

1. you can set fixed widht and class of the module (in module parameters)
2. this feature is implemented in componenty only :-( (not yet implemented)
3. this will be fixed in next release. for now you can add this code to:

modules\mod_phocagallery_random_image\assets\phocagallery_module_random_image.css

Code: Select all

/* IE Shadowbox */
#shadowbox_title,
#shadowbox_info {
	border: 0px;
}
to solve it.

Jan

Re: Diferent thumbs size & display coordinates button?!

Posted: 17 Aug 2009, 20:19
by webcro
For God's sake..., I've been trying for hours...

First of all, I really appreciate your quick response, but it doesn't work, not even in the content... In fact, I don't even get more than 1 image.

So, I want to dislplay only 5 images id 7 to 11, of the 2nd category, and put them between 2 paragraphs in the first article on the frontpage. Images are uploaded, thumbs generated (checked them up, downloaded..., they are the same size, etc...). I'm using the phocagallery content plugin, syntax according to documentation page, but all I can get is one and only image, if I put just "...|imageid=7|...", no limitstart, no limitcount :x

Then, when I try to add "...|limitstart=7|limitcount=5|...", --it's gone for good. I've tryed all possible combinations limitstart and limitcount without imageid=, I've tryed limitcount as 7, as 11, as 6, ...tryed imageid=0, 7, whatever... nothing shows up.
Gave it a search for phocagallery view=category|category=..., and I got several pages with the plugin insert code displayed textually, as is... :idea:

So, would you please, Jan, be so king as to explain what's the proper syntax to get 5 images id from 7 to 11, of the category id=2?

And concerning the geotagging, I still think there must be one more switch/ attribute there in the end, because only
"...displayname=1|displaydetail=1|displaydownload=1}" don't make it for geo coordinate button to show up besides the others

Re: Diferent thumbs size & display coordinates button?!

Posted: 19 Aug 2009, 10:35
by Jan
Hi,

the geo method (icon) is not implemented into plugin yet - this is feature request

Did you work with limistart and limimcount as with positions not ID

limitstart - wich postion will be started
limitcount - how many images will be loaded

e.g.
limitstart = 0 - will beginn with first image
limitstart = 1 - will begin with second image
limitstart=7|limitcount=5 means, it begins on the 8 image and 5 images will be displayed, so
the images which are on position 8,9,10,11,12 but the 7 SHOULD BE NOT ID of an image, this is sql query syntax, not image ID

Jan