Welcome, Guest. Please login or register.
Did you miss your activation email?

 
Advanced search

18633 Posts in 5522 Topics- by 9326 Members - Latest Member: TD

May 19, 2013, 04:31:41 AM
JOOM::GALLERY::FORUMJoomGallery 1.5 MVC - ExtensionsModulesModule JoomImages test version 1.5.3
Pages: 1 2 [3]
Print
Author Topic: Module JoomImages test version 1.5.3  (Read 13727 times)
0 Members and 1 Guest are viewing this topic.
dimmer
Newbie
*
Offline Offline

Posts: 3


View Profile
« Reply #30 on: August 07, 2009, 08:51:47 AM »

Quote
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
Newbie
*
Offline Offline

Posts: 37


View Profile
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« Reply #32 on: August 09, 2009, 08:38:54 AM »

@timleonard: nice bug, thank you
updated module in my first post
Logged
mestermotte
Newbie
*
Offline Offline

Posts: 11


View Profile
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« 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.

Quote
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
Newbie
*
Offline Offline

Posts: 11


View Profile
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« 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
Newbie
*
Offline Offline

Posts: 26


View Profile
« 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
Code:
<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
Code:
 $this->addConfig('resultbyuser',$params->get( 'resultbyuser', '0' ));

In helper.php added on line 238
Code:
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
Newbie
*
Offline Offline

Posts: 11


View Profile
« Reply #38 on: August 19, 2009, 11:56:22 PM »

I will try and have a look at it tomorrow.
Logged
avdstelt
Newbie
*
Offline Offline

Posts: 26


View Profile
« 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.

Code:
<?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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« Reply #41 on: August 20, 2009, 08:49:05 PM »

Hi,

Quote
In helper.php added on line 238
Code:
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
Newbie
*
Offline Offline

Posts: 26


View Profile
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« 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
Developer-Team
Hero Member
*****
Offline Offline

Posts: 990


View Profile WWW
« Reply #44 on: August 23, 2009, 10:37:23 PM »

Hi,
new Version 1.5.3 now available in our downloads
Thank you very much for help!
Please open a new thread when there are any problems with this version

Regards
Andreas
Logged
Pages: 1 2 [3]
Print
Jump to:  

Theme orange-lt created by panic

Bad Behavior has blocked 729 access attempts in the last 7 days.