This Theme is incompatible to the Module "Ajax Comments". All other Themes are working for me.
Is there any idea how to fix this?

Comments

Roavei’s picture

sry, i didn't explan the function of the module.
normally there should be a link "Add Comment" below the comments. and if sb clicks on it, the form for writing a comment expands.
This works fine with every theme i tried except with the sky theme... i would really need a solution for this issue.
thanks - guys

jacine’s picture

Status: Active » Closed (fixed)

This module is looking for some wrapper divs and an h3 tag that doesn't exist in sky's comment template files. To make it work, you need to change the markup in box.tpl.php to this:

<?php // $Id$ ?>
<div class="box">
  <?php if ($title): ?>
    <h3 class="title"><?php print $title; ?></h3>
  <?php endif; ?>
  <div class="content">
    <?php print $content; ?>
  </div>
</div>

I didn't want the comment titles to have h3 tags, because I don't believe they should get that kind of weight in the page, but I may include this change in the next update to avoid this type of issue in the future.

Super_Regg’s picture

Status: Closed (fixed) » Needs review

does not work, in forums you can not see the comment form in the comments, you can only see where it ends up down the comments section, and you want to display the form in the comments as the other sections, help me by please thanks

jacine’s picture

Status: Needs review » Closed (works as designed)

It's working just fine on my end.