Beiträge von maxe
-
-
Also in meinem Feed funktionieren die Bilder, hab aber auch in den Lese-Einstellungen
Zeige im Newsfeed
X ganzen Textangehakt. Außerdem kommt es auch auf den Feedreader an. Firefox z.B. kürzt immer und zeigt auch keine Bilder. Hast du es mal mit einem anderen Reader ausprobiert?
-
Nach dem ich die Zuangsdaten bekommen habe, hab ich den Code einfach noch mal neu umgestellt und jetzt geht's. Echt keine Ahnung was bei dir falsch lief (hab aber auch den Code nicht verglichen). Guck's dir einfach selber mal an.
Ach ja, wenn du jetzt die neuesten Kommentare oben stehen haben willst, dann musst du noch reverse_top_level hinzufügen
PHP<?php wp_list_comments( array( 'avatar_size'=>48, 'reply_text'=>'Reply'[COLOR=Red], 'reverse_top_level'=>DESC[/COLOR] ) ); ?>Alphawolf
nix da, zu spät ... das galt heut ausschließlich mir
-
-
Also bei mir wird er richtig angezeigt. Kannst du dein Anliegen vielleicht etwas genauer formulieren :confused:
-
-
Also das in der style.css habe ich geändert. Im richtigen Ordner ist die datei auch und es ist auch das richtige bild

Kann nicht sein, denn hier liegt immer noch das orangene: http://www.solores.bplaced.net/wordpress/wp-c…brickheader.jpg -
Wie gesagt, Design sollte weitestgehend über css möglich sein.
Bsp:
du gibst dem dt ein float:right; mit, dann ist's schon mal nach rechts ausgerichtet. Dann gibst du sowohl dt als auch dd eine "feste" Breite:
width:50%;Das war's doch dann schon fast

-
und das neue Bild liegt auch im richtigen Ordner: themes/liasorangec/images/kubrickheader.jpg
-
ich blick da grad bei dir nicht durch. Also das Seitentemplate [COLOR=Red]problemguestbook.php[/COLOR] (du schreibst es auch mal mit "c" ??) hat das comments_template [COLOR=Red]cguestbook.php[/COLOR] (du schreibst es auch "problemcguestbook.php" ??) included? Vielleicht kommst du grad selber etwas durcheinander mit den verschiedenen Template :confused:
Ich hab jetzt noch mal deine original commentsoriginal.php genommen und nur das Form hochgeholt (als cguestbook.php speichern und in die problemguestbook.php includen):
PHP
Alles anzeigen<?php // Do not delete these lines if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if ( post_password_required() ) { ?> <p class="nocomments">This post is password protected. Enter the password to view comments.</p> <?php return; } // add a microid to all the comments function comment_add_microid($classes) { $c_email=get_comment_author_email(); $c_url=get_comment_author_url(); if (!empty($c_email) && !empty($c_url)) { $microid = 'microid-mailto+http:sha1:' . sha1(sha1('mailto:'.$c_email).sha1($c_url)); $classes[] = $microid; } return $classes; } add_filter('comment_class','comment_add_microid'); // show the comments if ( have_comments() ) : ?> <?php if ( get_option( 'page_comments' ) ) : ?> <div id="commentpages"> <h2 class="commentpages">Comment Pages</h2> <div class="commentlinks"><?php paginate_comments_links(); ?></div> </div> <?php endif; ?> <div id="respond"> <?php cancel_comment_reply_link('Cancel Reply'); ?> <h2 class="respond">Write a Comment</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 echo urlencode(get_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 ) : ?> Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a> (<?php wp_loginout(); ?>) <?php else : ?> <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> <label for="author">Name <?php if ($req) echo "(required)"; ?></label> <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> <label for="email">Email <?php if ($req) echo "(required)"; ?></label></p> <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> <label for="url">Website</label></p> <?php endif; ?> <div> <?php comment_id_fields(); ?> <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /> </div> <p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p> <p><textarea name="comment" id="commentbox" cols="10" rows="10" tabindex="4"></textarea></p> <?php if (get_option("comment_moderation") == "1") { ?> <p><small><strong>Please note:</strong> Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.</small></p> <?php } ?> <input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <?php do_action('comment_form', $post->ID); ?> </form> <?php endif; ?> </div> <div id="comments"> <h2 class="comments">There are <font color="#ffffff"><?php comments_number('0 Comments', '1 Comments', '% Comments' );?></font> to "<font color="#ffffff"><?php the_title(); ?></font>"</h2> <ul class="singlecomments" id="commentlist"> <?php wp_list_comments( array( 'avatar_size'=>48, 'reply_text'=>'Reply' ) ); ?> </ul> </div> <?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. else : // comments are closed endif; endif; if ('open' == $post-> comment_status) : // show the form ?> <?php if ( get_option( 'page_comments' ) ) : ?> <?php endif; ?> <?php endif; ?> -
da ist wohl in der header.php irgendwas nicht richtig geschlossen.
-
ja und jetzt? Wo sollen wir schauen? Oder müssen wir raten

-
Variante 2 hast du gemacht? http://faq.wordpress-deutschland.org/wordpress-url-aendern/
-
ach so, fällt mir gerade ein, hast du denn auch ein Seitentemplate fürs Gästebuch erstellt und die commentsoriginal.php includiert? Und anschließend der Seite das Seitentemplate zugeordnet?
Edit:
Und was passiert, wenn du nicht das spezielle Seitentemplate der Seite zuordnest? -
wieso? ich seh nur 34 obwohl 44 oben gezählt werden.
-
Im Urzustand hat's aber funktioniert?
Was genau willst du denn daran anpassen? Verstehe es grad net so ganz.
Nur das Design? Dann doch lieber per css. -
-
Kann es sein, dass Track-/Pingbacks bei dir gar nicht angezeigt werden. Hast du in der comments.php vielleicht nur einen bestimmten Typ (type=comment) zu Ansicht angegeben?
-
richtig, dem 2. Bild dann keine Ausrichtung mehr
-
hast du schon mal the_category probiert: http://doku.wordpress-deutschland.org/Template_Tags/the_category