Ah Fehler gefunden, es lag an dem alten Template Design
Beiträge von Kundendienst-info
-
-
Hi,
das hatte ich vergessen zu erwähnen die Einstellungen habe ich schon vorgenommen.
[Blockierte Grafik: http://image-upload.de/image/XlMg4G/02a384da2d.png]
Leider bleibt es außer Wirkung. Ich habe alle nur erdenklichen Cache gelöscht (Wordpress, Browser..) aber keine Änderung.Daher die Überlegung, das es in der Single.php anders eingetragen ist. Hier findet sich der folgende Quelltext:
Die Comments.php sieht aber auch ganz normal aus:PHP
Alles anzeigen<?php // Do not delete these lines if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if (!empty($post->post_password)) { // if there's a password if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie ?> <p class="nocomments">This post is password protected. Enter the password to view comments.</p> <?php return; } } /* This variable is for alternating comment background */ $oddcomment = 'class="alt" '; ?> <!-- You can start editing here. --> <?php if ($comments) : ?> <h3 id="comments"><?php comments_number('Keine Meinungen', 'Eine Meinung', '% Meinungen' );?> zum “<?php the_title(); ?>”</h3> <ol class="commentlist"> <?php foreach ($comments as $comment) : ?> <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> <cite><?php comment_author_link() ?></cite> am <?php comment_date('d F, Y') ?> um <?php comment_time() ?> <?php edit_comment_link('edit',' ',''); ?> <?php if ($comment->comment_approved == '0') : ?> <em>Ihr Kommentar wird hier zeitnah erscheinen...</em> <?php endif; ?> <div class="commenttext"> <?php comment_text() ?> </div> </li> <?php /* Changes every other comment to a different class */ $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : ''; ?> <?php endforeach; /* end for each comment */ ?> </ol> <?php else : // this is displayed if there are no comments so far ?> <?php if ('open' == $post->comment_status) : ?> <!-- If comments are open, but there are no comments. --> <?php else : // comments are closed ?> <!-- If comments are closed. --> <p class="nocomments">Kommentare sind hier derzeit nicht möglich.</p> <?php endif; ?> <?php endif; ?>
Jemand eine weitere Idee? -
Hallo,
bei einigen Artikeln habe ich so viele Kommentare, das es unübersichtlich wird. Daher würde ich gerne nach 30 Kommentaren, alle älteren Kommentare auf einer weiteren Seite darstellen.
Gibt es hierfür vielleicht ein Plugin?