Zurück   WordPress Deutschland Forum > Support > Konfiguration
Registrieren Hilfe Benutzerliste Suchen Heutige Beiträge Alle Foren als gelesen markieren Threads ohne Antworten


Antwort
 
Themen-Optionen Ansicht
Alt 17.05.2008, 16:24   #1 (permalink)
SilentSoul
PostRank: 0
 
Registriert seit: 17.05.2008
Beiträge: 2
Kommentare

Hallo, erst einmal möchte ich ein Lob an dieses Forum aussprechen, da es mir schon sehr oft weitergeholfen hat. Allerdings sind jetzt doch ein paar Fragen aufgetaucht, bei denen ich hoffe das sie mir jemanden beantworten kann.

1. Wie kann ich die Nummerierung bei den Kommentaren entfernen?

2. Ist es möglich das Kontaktformular oben anzuzeigen und die Kommentare darunter?

3. Ich würde gerne auf einzelnen Seiten Kommentare erlauben. Da es mit dem Häckchen bei "erlaube Kommentare" nicht funktioniert, habe ich es mit <?php comments_template(); ?> versucht. Danach ging es zwar, aber dann wurde auf allen Seiten ein Formular angezeigt oder es stand dort das keine Kommentare vorhanden sind. Das möchte ich, wenn möglich, vermeiden.

4. Kann man bei den Wordpress Seiten PHP Seiten includen oder allgemein PHP verwenden? Bisher habe ich immer mit Hilfe des HTML-Editors Seiten zu includen. Allerdings wird dann immer nur der Code oder eine Fehlermeldung angezeigt, anstelle des eigentlichen Inhalts.

Ich würde mich sehr auf Antworten und Hilfestellungen freuen.

Mit freundlichen Grüßen

SilentSoul
SilentSoul ist offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiWong this Post!
Mit Zitat antworten
Alt 17.05.2008, 16:55   #2 (permalink)
Alphawolf
WPD-Moderator
 
Registriert seit: 31.05.2005
Ort: Gera
Beiträge: 1.835
Offenbar hat der Template-Autor das Kommentar-Template nicht korrekt umgesetzt. Poste mal den Inhalt der comments.php.
__________________
Erweiterungen
Alphawolf ist offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiWong this Post!
Mit Zitat antworten
Alt 17.05.2008, 17:18   #3 (permalink)
SilentSoul
PostRank: 0
 
Registriert seit: 17.05.2008
Beiträge: 2
Code:
<?php if ( !empty($post->post_password) && $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
<p><?php _e('Enter your password to view comments.'); ?></p>
<?php return; endif; ?>

<h2 id="comments"><?php comments_number(__('Keine Kommentare enthalten'), __('1 Kommentar zu diesem Beitrag'), __('% Kommentare zu diesem Beitrag')); ?> 
<?php if ( comments_open() ) : ?>
<a href="#postcomment" title="<?php _e("Leave a comment"); ?>">&raquo;</a>
<?php endif; ?>
</h2>


<?php if ( $comments ) : ?>

<ol><?php foreach ($comments as $comment) : ?>
<li id="comment-<?php comment_ID() ?>">
<div class="kommentar">
<div class="who">
<?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> | 
<?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a> <?php edit_comment_link(__("Edit This"), ' | '); ?>
</div>
<?php comment_text() ?>
</div>
</li>
<?php endforeach; ?>
</ol>

<br />
<?php else : // If there are no comments yet ?>

<?php endif; ?>

<?php if ( comments_open() ) : ?>
<h2 id="postcomment"><?php _e('Dein Kommentar'); ?></h2>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p>Angemeldet als <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout &raquo;</a></p>

<?php else : ?>

<p><input type="text" name="author" class="input" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Name <?php if ($req) echo "(erforderlich)"; ?></small></label></p>

<p><input type="text" class="input" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>E-Mail <?php if ($req) echo "(erforderlich - wird nicht ver&ouml;ffentlicht )"; ?></small></label></p>

<p><input type="text" class="input" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>

<?php endif; ?>

<p><textarea name="comment" class="textarea" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" class="sub" type="submit" id="submit" tabindex="5" value="Kommentar absenden" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>

<p> <strong>Folgende HTML-Tags sind erlaubt:</strong>
<br />
<small><?php echo allowed_tags(); ?></small>
</p>

<p><?php comments_rss_link(__('<abbr title="Really Simple Syndication">RSS</abbr> Feed f&uuml;r Kommentare zu diesem Beitrag')); ?> | 

<?php if ( pings_open() ) : ?>
<a href="<?php trackback_url() ?>" rel="trackback"><?php _e('TrackBack <abbr title="Uniform Resource Identifier">URI</abbr>'); ?></a></p>
<?php endif; ?>

<?php endif; // If registration required and not logged in ?>

<?php else : // keine Kommentare ?>
<p><?php _e('Sorry, hier sind keine Kommentare erlaubt...'); ?></p>
<?php endif; ?>
SilentSoul ist offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiWong this Post!
Mit Zitat antworten
Antwort


Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge anzufügen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

vB Code ist An.
Smileys sind An.
[IMG] Code ist Aus.
HTML-Code ist Aus.
Trackbacks are An
Pingbacks are Aus
Refbacks are Aus


Alle Zeitangaben in WEZ +2. Es ist jetzt 22:52 Uhr.


Sponsoren:

Powered by vBulletin® Version 3.6.8 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0  — ImpressumEin Inpsyde.com Projekt