done, please let me know
JA Thumbnail 2.6.0: duplicated images after last update of Joomla
- Edited
sure,
see here: https://www.ondaiblea.it/index.php/it/2014-07-02-22-38-36/cultura/10249-sandra-vita-guddo-e-i-ciciri-racconti-di-terra-di-sicilia
Intro text enabled and the problem is there
EDIT: first resized images then the normal ones, duplicated, also the prev-next bar is duplicated. If I change "intro text" in no all becomes ok, but if I put a read more into the article the problem is here.
EDIT 2: if "intro text" option is on also BSC Footer plugin is duplicated, if in it an image has'nt {jathumbnail off images="images/logo.png"} the image will be captured by JA Thumbnail two times.
any hint? :-)
- Edited
after some tries, clicking on an image I get also this message "The requested content cannot be loaded.". How to correct?
EDIT: found! JA Popup must be put in the first position, not the last as it was...
- Edited
I think none relevant, we can try to delete them and return to the original file. Let me know.
I'm having a problem with template: I must paginate it again :-(
EDIT: found the apparent issue with the template. Please, see this article. There is a "read more" and that duplicate the text as the others. But the worst thing is that if instead of <p> tag I put <div> tag and the readmore, with this article (featured) the module ACM in the template became wrong and no more responsive, a part of it to the right go below the module and so on: very ugly...
So I thing there are some problems with "read more", and not only with JA thumbnail (and/or JA Popup)...
- Edited
I think Ja-thumbnail capture both its resized images and then the whole images, but why?
See the attached image here, taken from Safari inspection...
EDIT: apparently JA thumbnail plugin runs a first time, extracts images in /images/resized/..., then it runs a javascript script, and then it extracts the images in /images/articoli/... not resized.
So it puts on the page the controls two times and the total number of images is doubled.
However there are issue not only with "readmore" but also with "pagebreak": if "intro text" is on the further pages of a multi page article generate a 404 error, if "intro text" is off the other pages are showed but there is the same error with JA Thumbnail (duplicated controls and images...).
salvomic Hi. I've made a workaround and edited file /html/com_content/article/default.php
I've commented out this part:
if ($params->get('show_intro')) {
$separator = md5(time());
$this->item->text = $this->item->introtext . $separator . $this->item->fulltext;
$offset = $this->state->get('list.offset');
$dispatcher = JEventDispatcher::getInstance();
$dispatcher->trigger('onContentPrepare', array ('com_content.article', &$this->item, &$this->item->params, $offset));
$dispatcher->trigger('onContentAfterTitle', array ('com_content.article', &$this->item, &$this->item->params, $offset));
$dispatcher->trigger('onContentBeforeDisplay', array ('com_content.article', &$this->item, &$this->item->params, $offset));
$dispatcher->trigger('onContentAfterDisplay', array ('com_content.article', &$this->item, &$this->item->params, $offset));
$explode = explode($separator, $this->item->text);
$this->item->introtext = array_shift($explode);
$this->item->text = implode('', $explode);
}
and added this small code at the bottom of this file:
<style type="text/css">
blockquote.article-intro {
display: none;
}
</style>
at least it's not showing double now. Please check.
Found!
I had two "Ja Teline V menu", one with only Home item, I delete it and now JA Thumbnail should work with no duplication of images, but I've some problems with "Pagebreak":
1. if I use "show pages" I get the controls in the left bar but in weird look and not usable (see attachment)
2. if I use "show tab" (or sliders) apparently the pagebreak don't work and JA Thumbnail has some issues...
Please, see this article.
Help again, please
- Edited