salvomic
I've not tested yet with Teline V template, let me check and will get back to you.

    salvomic Hi. I'm making a backup of Your site right now. Will try to figure out what can be wrong. Can You please make a test on Your own and check how this page will act if You will remove red_more line (a division to introtext)

      salvomic Hi. Unfortunately there is no password to joomla panel given. Can You please update details in Your first post?

        teitbite

        there is no "readmore" line in the article, only the option "Intro text" enabled (see attached image). If I set this option off all works well...

        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...

          salvomic Hi. I've tracked the issue to /html/com_content/article/default.php which I can see You have multiple versions of. Can You please tell me what changes has been done exactly to this file?

          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)...


          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.

            salvomic
            There seems to be conflict with JA Thumbnail, if I disable this plugin, the image will display fine in article detailed page. I've forwarded to the dev team for further checking.

              saguaros thank you!
              please, let me if they find something or update the distribution.

              salvo

              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 🙂

                  teitbite thank you!
                  Maybe the solution is both your code and my deleting the second "Ja Teline menu"...
                  Now it seems ok but not with "pagebreak". Any help?

                  With some articles (with only intro and full text image and not other images in article) I get full image and not the plugin showing (see here)

                    salvomic Hi. I agree it's not a perfect solution, but till developers will be able to take a look it is best I can think of. Try add this to css:

                    .article-index {
                    float: none;
                    width: 100%;
                    }

                      teitbite what css, please?
                      Yes, I agree, if this workaround works, I hope the developers could make soon an update 🙂

                        salvomic Hi. Please copy it to custom.css file in /css folder. If You do not have this file yet, simply create it.

                          You need to Login to view replies.