Hi,
I had the same problem: I wanted the ReadMore link style offered by JComment but I want to use also AutoReadMore to save some posting time. I 'd like to offer my solution.
The idea is simple. AutoReadMore doesn't create real ReadMore cut, it displays just a small part of the article. Sowe can let it do its work and force JComment to display a false ReadMore link. It is a false one because we didn't put any ReadMore in our article, it is in fact a simple to-detailed-view link.
To do that let's tweak th plugins/content/jcomment.php file
- line 134 replace
if (($params->get('show_readmore') == 0) || (@$article->readmore == 0)) {
by
if ($params->get('show_readmore') == 0) {
-line 207 replace
if (isset($params)) {
by
if (!isset($params)) {
. Here I don't know why isset($params) is true with AutoReadMore activated and false whithout AutoReadMore... If a developper or a more competent guy can explain to me... Anyway, our problem is solved now !
++
Suddenci