|
dimmer
|
 |
« Reply #30 on: August 07, 2009, 08:51:47 AM » |
|
You just have to try USE that function, not just suppose that it's not going to work, because it WORKS..
I had tried to put "middle" even before I wrote here and it didn't work. Finally I solved it. Yesterday I uninstall the module and then install it again. After that "middle" function began to work. Now pictures are centred perfectly! Thanks for help.
|
|
|
|
|
Logged
|
|
|
|
|
timleonard
|
 |
« Reply #31 on: August 09, 2009, 02:19:44 AM » |
|
After updating to ver 1.5.3 it appears that if you running two slideshows from the same page displaying random photos from both, then both will display the same photos. In ver 1.5.2 it worked as expected, both slideshows displaying random photos differently from the other
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #32 on: August 09, 2009, 08:38:54 AM » |
|
@timleonard: nice bug, thank you updated module in my first post
|
|
|
|
|
Logged
|
|
|
|
|
mestermotte
|
 |
« Reply #33 on: August 19, 2009, 03:02:41 PM » |
|
Hi I am looking forward to the new joomimg. Maybe I´m too late, but I just found out, that Joomimg does not work when I use {loadposition} in article. The images do not keep their position. When I load the same in user1 pos it is ok. Here is what I mean: http://www.ffkk.org/Joomla/(I have not read all the replys in this forum. So if has been mensioned, please forget about this) AND!! it would be nice, if there were at better explanation for the JIWORDS Mette
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #34 on: August 19, 2009, 05:58:34 PM » |
|
Hi, no solution from me, it can depend on the pictures with different sizes, the template settings, the container size. Sorry, i don't know. AND!! it would be nice, if there were at better explanation for the JIWORDS I don't understand.... What language are you using? Regards Andreas
|
|
|
|
|
Logged
|
|
|
|
|
mestermotte
|
 |
« Reply #35 on: August 19, 2009, 07:26:17 PM » |
|
The list of words like JISLIDESHOWPANPERC, JIAUTRES and so on. They are not in my english dictionary. It would be nice, if there were some better explanations in the text that shows, with the mouseover text. Just a wish. I use the danish languageversion.
|
|
|
|
« Last Edit: August 19, 2009, 07:30:55 PM by mestermotte »
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #36 on: August 19, 2009, 08:51:57 PM » |
|
Ok, i understand. This words like 'JISLIDESHOWPANPERC' are not really words. The are constants to fetch the right content from the language files, dependent on the actual language chosen in Joomla!.
Please unpack the module zip locally and look at the danish language file (languages/da-DK/da-DK.mod_joomimg.ini) The language constants are incomplete. You can have a look at the english or german language files to compare....
Are you willing to translate the missing constants to danish? I would include it.
Thank you in advance Regards Andreas
|
|
|
|
|
Logged
|
|
|
|
|
avdstelt
|
 |
« Reply #37 on: August 19, 2009, 10:58:32 PM » |
|
@aHa, the 'fallback' parameter is ok I think. I also added a new sorting method to only show the images from the community builder user by his id, don't know if you like this option but here is what I did, linenummers are with my timespan code. The way I am using this is to display a slideshow in the cb profile page. In mod_joomimg.xml added on line 77 <param name="resultbyuser" type="radio" default="1" label="JIRESULTBYUSER" description="JIRESULTBYUSERDESCR"> <option value="0">JINO</option> <option value="1">JIYES</option> </param>
In helper.php added on line 93 $this->addConfig('resultbyuser',$params->get( 'resultbyuser', '0' ));
In helper.php added on line 238 if($this->getConfig('resultbyuser')==1) { $cbuser=$_GET['user']; $query .= " AND p.owner = $cbuser\n"; }
|
|
|
|
« Last Edit: August 20, 2009, 08:44:34 AM by avdstelt »
|
Logged
|
|
|
|
|
mestermotte
|
 |
« Reply #38 on: August 19, 2009, 11:56:22 PM » |
|
I will try and have a look at it tomorrow.
|
|
|
|
|
Logged
|
|
|
|
|
avdstelt
|
 |
« Reply #39 on: August 20, 2009, 11:36:39 AM » |
|
@aHa, I updated the slideshow.php file with the following code, now cat. view or detail view is also working when you are using the slideshow. <?php if($joomimgObj->getConfig('piclink') ==1){ ?>
url: '<?php echo JRoute::_('index.php?option=com_joomgallery'.$joomimgObj->getConfig("itemidtxt").'&catid='.$img->catid.'&func=viewcategory'); ?>' }); <?php } else { $link = $joomimgObj->getPictureLinkO($img); if ($joomimgObj->getConfig('itemid')!=0) { $link=preg_replace('/[I|i]temid=[0-9]*/','Itemid='.$joomimgObj->getConfig('itemid'),$link,1); } ?> url: '<?php echo $link; ?>' }); <?php } ?>
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #40 on: August 20, 2009, 08:39:06 PM » |
|
Hi, @mestermotte: Thanks again for your help
@advstelt: fine code, respect But: try to set the category view in JoomGallery to 'Slimbox' and picture link in module to 'detail'. Does it work for you?
Regards Andreas
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #41 on: August 20, 2009, 08:49:05 PM » |
|
Hi, In helper.php added on line 238 if($this->getConfig('resultbyuser')==1) { $cbuser=$_GET['user']; $query .= " AND p.owner = $cbuser\n"; }
Hm, i'm quite sure this could be a security issue. It's better to use a 'JRequest' (like JRequest::getInt('user', 0)) to get the variable from the $_GET Array Could you post me a link to this modified module, maybe per PN Thank you Regards Andreas
|
|
|
|
|
Logged
|
|
|
|
|
avdstelt
|
 |
« Reply #42 on: August 20, 2009, 09:21:07 PM » |
|
But: try to set the category view in JoomGallery to 'Slimbox' and picture link in module to 'detail'. Does it work for you?
Didn't work for me, but I am also not using any slimbox on my site. Greetings Arjan
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #43 on: August 22, 2009, 08:44:52 AM » |
|
Ok, the same behavior as in standard view would be great. I can't see a way to solve it.
|
|
|
|
|
Logged
|
|
|
|
|
aHa
|
 |
« Reply #44 on: August 23, 2009, 10:37:23 PM » |
|
Hi, new Version 1.5.3 now available in our downloadsThank you very much for help! Please open a new thread when there are any problems with this version Regards Andreas
|
|
|
|
|
Logged
|
|
|
|
|