-
AuthorPosts
-
tom_laan84 Friend
tom_laan84
- Join date:
- June 2008
- Posts:
- 348
- Downloads:
- 142
- Uploads:
- 30
- Thanks:
- 88
- Thanked:
- 67 times in 11 posts
September 14, 2012 at 1:14 pm #467067I Must say,
I find it rediculous of Joomlart.com Team that this issue took 2.5 months to be fixed! I started a support ticket, one of the advantages of Developer account. But even they couldn’t fix it. I Got redirected to this here: http://pm.joomlart.com/browse/JAECMODSLIDESHOWLITE-33 now it seems this issue is finally fixed.
Joomlart: I hope you guys learn from this and won’t let things like this happen in the future. 2.5 months is unacceptable!!
Regards,
Tom
matbeard7 Friendmatbeard7
- Join date:
- July 2012
- Posts:
- 35
- Downloads:
- 3
- Uploads:
- 0
- Thanked:
- 1 times in 1 posts
September 14, 2012 at 1:28 pm #467068I’m using version 1.0.8 of the module. The suggested code is at line 154, but commenting it out has no effect — links are still not working. However, after rolling back to version 1.0.4 (possibly 1.0.5) the above suggestion works.
Somebody at JoomlArt really needs to fix this for future versions.
September 15, 2012 at 7:48 am #467095<em>@matbeard7 338238 wrote:</em><blockquote>I’m using version 1.0.8 of the module. The suggested code is at line 154, but commenting it out has no effect — links are still not working. However, after rolling back to version 1.0.4 (possibly 1.0.5) the above suggestion works.</blockquote>
With version 1.0.8 this corrects the button, that now it is linkable , but it doesn’t solve the link on the pictures (both the background and inset ones)
jjthemachine Friendjjthemachine
- Join date:
- September 2008
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanked:
- 2 times in 2 posts
September 17, 2012 at 1:30 am #467144Did you try commenting out line 307? That’s where I found [PHP]targets:[‘<?php echo implode(”,”, $targets); ?>’][/PHP] in version 1.0.8
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
September 17, 2012 at 5:01 am #467171Hi all,
Sorry for last answer, first, please don’t commnet line :
[PHP]
targets:[‘<?php echo implode(”,”, $targets); ?>’]
[/PHP]Open file “modules/mod_jaslideshowlite/assets/iefix.js” and change code it to :
[PHP]
;(function(){
if(document.getElementById(‘jaieanim’)){ //already exist this code, no need to load css again
return;
}var assets = (typeof siteurl != ‘undefined’ ? siteurl : (typeof JADef != ‘undefined’ ? JADef.siteurl : ”)) + ‘modules/mod_jaslideshowlite/assets/’,
head = document.head || document.getElementsByTagName(‘head’)[0],
iefix = document.createElement (‘link’),
ieanim = document.createStyleSheet();// add css
ieanim.cssText = ”+
‘.ja-ss-item { behavior:url(‘ + assets + ‘animate.htc) }n’ +
‘.ja-ss-item.curr { behavior:url(‘ + assets + ‘animate.htc?curr) }n’ +
‘.ja-ss-item.prev { behavior:url(‘ + assets + ‘animate.htc?prev) }n’ +
‘.ja-ss-item.next { behavior:url(‘ + assets + ‘animate.htc?next) }n’;iefix.id = ‘jaieanim’;
iefix.type = ‘text/css’;
iefix.rel = ‘stylesheet’;
iefix.href = assets + ‘iefix.css’;
head.appendChild(iefix);
})();
[/PHP]Then, open file “modules/mod_jaslideshowlite/mod_jaslideshowlite.php”,
find code line 104 :[PHP]
if($type != ‘custom’){
$timages = array();
$tthumbArray = array();
$tcaptionsArray = array();
$turls = array();
$ttargets = array();for($i = 0, $il = count($images); $i < $il; $i++){
$iname = basename($images[$i]);
if(strpos($iname, ‘-first’) === false && strpos($iname, ‘-second’) === false){
$timages[] = $images[$i];
$tthumbArray[] = $thumbArray[$i];
$tcaptionsArray[] = $captionsArray[$i];
$turls[] = $urls[$i];
$ttargets[] = $targets[$i];
}
}$images = $timages;
$thumbArray = $tthumbArray;
$captionsArray = $tcaptionsArray;
$urls = $turls;
$targets = $ttargets;
}
[/PHP]change it to :
[PHP]
$timages = array();
$tthumbArray = array();
$tcaptionsArray = array();
$turls = array();
$ttargets = array();for($i = 0, $il = count($images); $i < $il; $i++){
$iname = basename($images[$i]);
if(strpos($iname, ‘-first’) === false && strpos($iname, ‘-second’) === false){
$timages[] = $images[$i];
$tthumbArray[] = $thumbArray[$i];
$tcaptionsArray[] = $captionsArray[$i];
$turls[] = $urls[$i];
$ttargets[] = $targets[$i];
}
}if($type != ‘custom’){
$images = $timages;
$thumbArray = $tthumbArray;
$captionsArray = $tcaptionsArray;
}$urls = $turls;
$targets = $ttargets;
[/PHP]tom_laan84 Friendtom_laan84
- Join date:
- June 2008
- Posts:
- 348
- Downloads:
- 142
- Uploads:
- 30
- Thanks:
- 88
- Thanked:
- 67 times in 11 posts
September 17, 2012 at 9:38 am #467225I just updated to 1.0.9 and this fixed the problem. Finally! I guess beter late then never huh?
1 user says Thank You to tom_laan84 for this useful post
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
September 17, 2012 at 9:51 am #467232Hi,
I had contacted you early as the version 1.0.9 gets updated the earliest.
Apologize again for the delay updated patches, hope you like it :).
Regards
2 users say Thank You to MoonSailor for this useful post
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
September 18, 2012 at 2:35 am #467317Hi all,
Modules JA Slideshow Lite for 1.0.9 is released. Please upgrade it now.
http://www.joomlart.com/forums/downloads.php?do=file&id=3029
Thanks all 馃檪
1 user says Thank You to MoonSailor for this useful post
jcsanjurjo Friendjcsanjurjo
- Join date:
- May 2012
- Posts:
- 116
- Downloads:
- 0
- Uploads:
- 46
- Thanks:
- 26
- Thanked:
- 2 times in 1 posts
October 21, 2012 at 11:33 am #470636Hi guys, I’m still having the problem even updating to JA Slideshow 1.0.9
Here’s my code on JA Slideshow module Advanced Configuration
<h3>INDUSTRIA FARMAC脡UTICA</h3><p>Calidad, flexibilidad e integraci贸n en un entorno regido por el cumplimiento de normativas.</p>
<a class="btn-action" href="http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/industria-farmaceutica"><span>Descubra c贸mo</span></a><h3>FABRICACI脫N DISCRETA</h3><p>Optimizando cada uno de los recursos de la compa帽铆a para maximizar la rentabilidad</p><a class="btn-action" href="http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-discreta"><span>Descubra c贸mo</span></a>
<h3>FABRICACI脫N POR PROYECTO</h3><p>Manejando eficientemente entornos orientados a proyectos y con un r茅gimen intensivo de transacciones.</p><a class="btn-action" href="http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-por-proyecto"><span>Descubra c贸mo</span></a>
<p> <br> <br> </p>
<a class="btn-action" href="http://www.microsoftdynamicsbarcelona.es/index.php/nosotros/conectados/eventos/lanzamiento-microsoft-dynamics-nav-2013"><span>INSCR脥BETE</span></a>
Please check on my site and you can see how ja slideshow links don’t work properly. Just 1st slide is working as expected
Thanks for your help
jcs
jcsanjurjo Friendjcsanjurjo
- Join date:
- May 2012
- Posts:
- 116
- Downloads:
- 0
- Uploads:
- 46
- Thanks:
- 26
- Thanked:
- 2 times in 1 posts
October 23, 2012 at 9:59 am #470874Hi all, please
Nobody is having the click + link problem even after updating to JA Slideshow 1.0.9 ??
I tryed as well to uninstall previous JA Slideshow versions and install JA Slideshow 1.0.9 from fresh
Help please, we’ll be very, deeply appreciated
jcs
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
October 23, 2012 at 10:07 am #470877Hi jcsanjurjo,
Please send pm to me admin account your site. I need it for closer check.
jcsanjurjo Friendjcsanjurjo
- Join date:
- May 2012
- Posts:
- 116
- Downloads:
- 0
- Uploads:
- 46
- Thanks:
- 26
- Thanked:
- 2 times in 1 posts
October 23, 2012 at 10:55 am #470881<em>@MoonSailor 343371 wrote:</em><blockquote>Hi jcsanjurjo,
Please send pm to me admin account your site. I need it for closer check.</blockquote>
Hi @moonsailor, done !! 馃槈
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
October 24, 2012 at 8:07 am #470958Hi,
Alter checking your site, i changed:
[PHP]<h3>INDUSTRIA FARMAC脡UTICA</h3><p>Calidad, flexibilidad e integraci贸n en un entorno regido por el cumplimiento de normativas.</p>
<a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/industria-farmaceutica”><span>Descubra c贸mo</span></a><h3>FABRICACI脫N DISCRETA</h3><p>Optimizando cada uno de los recursos de la compa帽铆a para maximizar la rentabilidad</p><a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-discreta”><span>Descubra c贸mo</span></a>
<h3>FABRICACI脫N POR PROYECTO</h3><p>Manejando eficientemente entornos orientados a proyectos y con un r茅gimen intensivo de transacciones.</p><a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-por-proyecto”><span>Descubra c贸mo</span></a>
<p> <br> <br> </p>
<a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/nosotros/conectados/eventos/lanzamiento-microsoft-dynamics-nav-2013″><span>INSCR脥BETE</span></a>[/PHP]
to
[PHP]
<h3>INDUSTRIA FARMAC脡UTICA</h3><p>Calidad, flexibilidad e integraci贸n en un entorno regido por el cumplimiento de normativas.</p>
<a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/industria-farmaceutica”><span>Descubra c贸mo</span></a><h3>FABRICACI脫N DISCRETA</h3><p>Optimizando cada uno de los recursos de la compa帽铆a para maximizar la rentabilidad</p><a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-discreta”><span>Descubra c贸mo</span></a>
<h3>FABRICACI脫N POR PROYECTO</h3><p>Manejando eficientemente entornos orientados a proyectos y con un r茅gimen intensivo de transacciones.</p><a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/clientes/competencias/fabricacion-por-proyecto”><span>Descubra c贸mo</span></a>
<p> <br> <br> </p>
<a class=”btn-action” href=”http://www.microsoftdynamicsbarcelona.es/index.php/nosotros/conectados/eventos/lanzamiento-microsoft-dynamics-nav-2013″><span>INSCR脥BETE</span></a>[/PHP]
it’s running now as normal. I think the error caused by the mistakes in the photo taken. You can config to get images from folder :
[PHP]
/images/slideshow
[/PHP]with images “sl1-bg.jpg”, if the current folder contains this file “sl1-first.jpg” and “sl1-second.jpg”, it will auto get using but in this case it calls “sl1-first.png” and “sl1-second.png”. Hence, it caused the error.
i created issue http://pm.joomlart.com/browse/JAECMODSLIDESHOWLITE-35 for it, once it is done, i will upgrade for you.
Now it works.
jcsanjurjo Friendjcsanjurjo
- Join date:
- May 2012
- Posts:
- 116
- Downloads:
- 0
- Uploads:
- 46
- Thanks:
- 26
- Thanked:
- 2 times in 1 posts
October 24, 2012 at 4:28 pm #471012Hi @moonsailor, thanks for your effort but unfortunatelly after your changes JA Slideshow Lite still is not running as expected. Please see the table below with the behaviour of each slide in my site
When you place the pointer in the “Call-to-Action” button, then click the righ button on your mouse and then select open in a new window, just in this case, is the only case that the system directions to the correct URL. With one click no way.
Please have a look and let me know how to proceed.
I’ll deeply appreciatte your help
Regards
jcs
MoonSailor FriendMoonSailor
- Join date:
- November 2011
- Posts:
- 1106
- Downloads:
- 0
- Uploads:
- 245
- Thanks:
- 89
- Thanked:
- 248 times in 223 posts
October 25, 2012 at 8:09 am #471063Hi jcsanjurjo,
I will contact to dev for this case. Now, i change code in line 147 in file “modules/mod_jaslideshowlite/mod_jaslideshowlite.php”
[PHP]
urls:[‘<?php echo implode(”,”, $urls); ?>’],
[/PHP]to
[PHP]
//urls:[‘<?php echo implode(”,”, $urls); ?>’],
[/PHP]and it’s working fine now. Please check again. However, i think it is not the best solutions.
1 user says Thank You to MoonSailor for this useful post
AuthorPostsThis topic contains 50 replies, has 23 voices, and was last updated by Markus 11 years, 9 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum