Hi there,
I´ve installed the latest dev version (I´m using Omega theme and I´ve read about some issues with the reply button).
The thing is that I´ve installed the module, and there´s no new otions under the comments tab inside each content type, nor nothing. Not even any "ajax effect" into my comments.
So I wonder, as there´s no readme, maybe I´m doing something wrong here and it´s a very obvious mistake of mine.
Where should I go to configure this module?
Thanks!!

Update: I´ve set Bartik as my default theme, and it seems to work without me doing nothing. Maybe it won´t work because I´ve got a special comment template in Omega?
This is my comment-wrapper template (I´ve compared with the tpl that comes with the module, and it seems both ok):

<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<br>
<div class="comment-form-title"> <img src="/img/glyphicons_244_conversation.png"> Comentarios</div>
<br>
  <?php print render($content['comments']); ?>

  <?php if ($content['comment_form']): ?>
    <div class="comment-form-title"> <img src="/img/glyphicons_235_pen.png"> Agregar Nuevo Comentario</div>
    <div class="comment-form-formulario"><?php print render($content['comment_form']); ?></div>
  <?php endif; ?>
</div>

Comments

Rosamunda’s picture

Issue summary: View changes

An update

konforti’s picture

You don't need to use the dev, use the 7.x-1.1 release (actually they identical at this time).
You don't need to set anything, it's should work.
Did you tried switching theme, to Bartik for instance?

Rosamunda’s picture

Thanks for your reply. Yes, I´ve tested it on Bartik and it works as expected...
So I think it´s a bug related to Omega theme? (maybe this should be in the Omega issue queue?).
Or maybe isn´t a bug at all, and it´s related to a misconfiguration in my Omega subtheme... I´ll check that also...

brei9000’s picture

I'm not able to get this working out of the box either. I using Zen Starterkit. I can confirm it works in Bartik as well.

BeaPower’s picture

This works in Pixture Reloaded - adaptive theme but how to get comment form on top?

amirtaiar’s picture

Doesn't seems to work on Sasson theme.
Mention here also Zen and Omega alnog with Sasson all are responsive themes using Sass - Maybe it's relate?

Anonymous’s picture

Doesn't work in Omega 3.x

Leeteq’s picture

Title: How does this module work? » Theme incompatibility issues?
Component: Documentation » Code
Category: support » bug
Rosamunda’s picture

After more than a year after I´ve first tried this module, I´ve found myself stuck in the very same spot.
It wouldn´t hurt to have a readme file :)

Did anyone solved this issue?
Thanks!

Rosamunda’s picture

Issue summary: View changes

a typo

ckng’s picture

Component: Code » Documentation
Category: Bug report » Task
Issue summary: View changes
Status: Active » Needs review

Themes generate different comment html structure, depending on the base theme you are using. Comment body from core theme are wrapped inside 'content' class.

For contrib/custom theme, this is either removed or overridden. To get the module to work on these theme, ensure 'content' class is added for comment, or do it directly in comment-wrapper.tpl.php or comment.tpl.php

// Omega
function yourtheme_preprocess_comment(&$variables) {
  // restore default class for the comment content, other theme adjust the classes array accordingly
  $variables['content_attributes_array']['class'][] = 'content';
}