Liebe Community,
ich nutze das Comment Guestbook - Plugin uns habe es mir nun schon etwas angepasst. Leider bekomme ich es nicht hin, die Ordinalzahlen (1., 2., 3., usw.) aus der Anzeige zu löschen. Ich kriege einfach nicht raus, welchen PHP-Befehl ich löschen bzw. anpassen muss. Es dreht sich um die Seite http://beta.ferienhauskeller.de/?page_id=365 In folgendem Code müsste es versteckt sein:
PHP
<footer class="comment-meta">
<b><div class="comment-author vcard">
<?php
$avatar_size = 68;
if ("0" != $comment->comment_parent)
printf('<a href="%1$s"><time datetime="%2$s">%3$s</time></a>',
esc_url(get_comment_link($comment->comment_ID)),
get_comment_time("c"),
sprintf(__('%1$s at %2$s<br />', $l10n_domain), get_comment_date(), get_comment_time()));
printf('<span class="fn">%s</span>', get_comment_author_link());
if($is_comment_from_other_page && "0" == $comment->comment_parent)
echo ' '.__('in', $l10n_domain).' '.$other_page_link;
edit_comment_link(__("Edit", $l10n_domain), '<span class="edit-link">', "</span>"); ?>
</div><!-- .comment-author .vcard --></b>
<?php if ($comment->comment_approved == "0") : ?>
<em class="comment-awaiting-moderation"><?php _e("Your comment is awaiting moderation.", $l10n_domain); ?></em>
<br />
<?php endif; ?>
</footer>
<div class="comment-content"><?php comment_text(); ?></div>
Alles anzeigen
Außerdem würde ich gerne das Eingabefeld für den Gästebuchtext kleiner machen. Wer weiß, wie das geht?
Danke für eure Hilfe!