Vielen Dank für eure Tipps! :)
Ich werd morgen mal rumprobieren.
Um schreiben oder kommentieren zu können, benötigen Sie ein Benutzerkonto.
Sie haben schon ein Benutzerkonto? Melden Sie sich hier an.
Jetzt anmeldenHier können Sie ein neues Benutzerkonto erstellen.
Neues Benutzerkonto erstellenVielen Dank für eure Tipps! :)
Ich werd morgen mal rumprobieren.
Danke für den Hinweis!
Also ist das, was ich will, nicht mit Twenty Seventeen zu erreichen?
Mir gefällt das Theme sehr gut und ich würde gerne dabei bleiben.
Hallo zusammen!
Ich habe mit Twenty-Seventeen eine Seite erstellt und möchte diese als One-Pager betreiben.
Es soll eigentlich nur 3 Bereiche geben:
- Bereich 1 Blog (Beiträge)
- Bereich 2
- Bereich 3
Ich schaff es aber dabei nicht die Beitragsseite als Startseite festzulegen.
Ich hab mal gegoogelt und zum Beispiel diese Seite gefunden, die offensichtlich mit Twenty-Seventeen als Theme läuft und wo genau das ist, was ich will. Es geht also offensichtlich.
Was mach ich falsch?
Super! Vielen Dank für deine Hilfe und die ausführliche Erklärung!
Da ich nicht mit einem SubTheme arbeite und der Auftritt jetzt einmal steht, müsste ich das bei einem evtl. Update des Themes nochmal machen. Aber der Aufwand hält sich in Grenzen...
Danke!
Zeigt aber keine Wirkung.
Das ist der gesamte Code der comments.php. Wo Platzhalter steht, hab ich den angegebenen Code-Teil gelöscht.
<?php/**
* @package WordPress
* @subpackage Yoko
*/
?>
<div id="comments" class="clearfix">
<?php if ( post_password_required() ) : ?>
<div class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'yoko' ); ?></div>
</div><!-- end comments -->
<?php
/* Stop the rest of comments.php from being processed,
* but don't kill the script entirely -- we still have
* to fully load the template.
*/
return;
endif;
?>
<?php
// You can start editing here -- including this comment!
?>
<?php if ( have_comments() ) : ?>
<h3 id="comments-title"><?php
printf( _n( 'One Comment', '%1$s Comments', get_comments_number(), 'yoko' ),
number_format_i18n( get_comments_number() ));
?></h3>
<p class="write-comment-link"><a href="#respond"><?php _e( 'Leave a reply →', 'yoko' ); ?></a></p>
<ol class="commentlist">
<?php wp_list_comments( array( 'callback' => 'yoko_comment' ) ); ?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below">
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'yoko' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'yoko' ) ); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ( comments_open() ) : // If comments are open, but there are no comments ?>
<?php else : // or, if we don't have comments:
/* If there are no comments and comments are closed,
* let's leave a little note, shall we?
* But only on posts! We don't want the note on pages.
*/
/*Platzhalter*/
<?php endif; ?>
<?php endif; ?>
<?php comment_form(
array(
'comment_notes_before' =>__( '<p class="comment-notes">Required fields are marked <span class="required">*</span>.</p>', 'yoko'),
'comment_notes_after' => '',
'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Message <span class="required">*</span>', 'noun', 'yoko' ) . '</label><br/><textarea id="comment" name="comment" rows="8"></textarea></p>',
)
); ?>
</div><!-- end comments -->
Alles anzeigen
Ich nutze unter WordPress das Theme YOKO.
Ich habe die Kommentarfunktion deaktiviert.
Links neben allen Artikeln steht jetzt der Hinweis: "Kommentare deaktiviert".
Das hätte ich gerne weg.
In der comments.php finde ich folgenden Code:
<?php if ( comments_open() ) : // If comments are open, but there are no comments ?>
<?php else : // or, if we don't have comments:
/* If there are no comments and comments are closed,
* let's leave a little note, shall we?
* But only on posts! We don't want the note on pages.
*/
if ( ! comments_open() && ! is_page() ) :
?>
<p class="nocomments"><?php _e( 'Comments are closed.', 'yoko' ); ?></p>
<?php endif; // end ! comments_open() && ! is_page() ?>
<?php endif; ?>
Alles anzeigen
Ich weiß nicht genau, wo ich ansetzen muss. Kann jemand helfen?