*push*
kann mir bitte einer helfen... ist sehr wichtig danke
Beiträge von pinkfrag
-
-
rss werde ich noch ändern
header finde ich eigentlich ganz ok... schlicht eben wie der rest der seite und aufgeräumt -
Hier ist der Link zum Blog youpal.de
Auf youpal schreibe ich über alles mögliche was mich gerade bewegt oder interessiert.
Und das ist zur Zeit auch Aquaponik. Schau doch auch hier im Forum vorbei und informiere dich über aquaponik.Gruß simon und danke für deine zeit
-
Ich nutze das theme: Commune 0.2 ist ein child Theme von Thematic.
hier ist die comments php welche ich nur zu 90% verstehe.
die ist mir etwas zu komplex aufgebaut...
Es sollte ja eingentlich eine trackback liste angezeigt werden oder??PHP
Alles anzeigen<?php thematic_abovecomments() ?> <div id="comments"> <?php $req = get_option('require_name_email'); // Checks if fields are required. if ( 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']) ) die ( 'Please do not load this page directly. Thanks!' ); if ( ! empty($post->post_password) ) : if ( $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password ) : ?> <div class="nopassword"><?php _e('This post is password protected. Enter the password to view any comments.', 'thematic') ?></div> </div><!-- .comments --> <?php return; endif; endif; ?> <?php if ( have_comments() ) : ?> <?php /* numbers of pings and comments */ $ping_count = $comment_count = 0; foreach ( $comments as $comment ) get_comment_type() == "comment" ? ++$comment_count : ++$ping_count; ?> <?php if ( ! empty($comments_by_type['comment']) ) : ?> <?php thematic_abovecommentslist() ?> <div id="comments-list" class="comments"> <h3><?php printf($comment_count > 1 ? __('<span>%d</span> Comments', 'thematic') : __('<span>One</span> Comment', 'thematic'), $comment_count) ?></h3> <ol> <?php wp_list_comments('type=comment&callback=thematic_comments'); ?> </ol> <div id="comments-nav-below" class="comment-navigation"> <div class="paginated-comments-links"><?php paginate_comments_links(); ?></div> </div> </div><!-- #comments-list .comments --> <?php thematic_belowcommentslist() ?> <?php endif; /* if ( $comment_count ) */ ?> <?php if ( ! empty($comments_by_type['pings']) ) : ?> <?php thematic_abovetrackbackslist() ?> <h3><?php printf($ping_count > 1 ? __('<span>%d</span> Trackbacks', 'thematic') : __('<span>One</span> Trackback', 'thematic'), $ping_count) ?></h3> <ol> <?php wp_list_comments('type=pings&callback=thematic_pings'); ?> </ol> </div><!-- #trackbacks-list .comments --> <?php thematic_belowtrackbackslist() ?> <?php endif /* if ( $ping_count ) */ ?> <?php endif /* if ( $comments ) */ ?> <?php if ( 'open' == $post->comment_status ) : ?> <div id="respond"> <h3><?php comment_form_title( __('Post a Comment', 'thematic'), __('Post a Reply to %s', 'thematic') ); ?></h3> <div id="cancel-comment-reply"><?php cancel_comment_reply_link() ?></div> <?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p id="login-req"><?php printf(__('You must be <a href="%s" title="Log in">logged in</a> to post a comment.', 'thematic'), get_option('siteurl') . '/wp-login.php?redirect_to=' . get_permalink() ) ?></p> <?php else : ?> <div class="formcontainer"> <?php thematic_abovecommentsform() ?> <form id="commentform" action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post"> <?php if ( $user_ID ) : ?> <p id="login"><?php printf(__('<span class="loggedin">Logged in as <a href="%1$s" title="Logged in as %2$s">%2$s</a>.</span> <span class="logout"><a href="%3$s" title="Log out of this account">Log out?</a></span>', 'thematic'), get_option('siteurl') . '/wp-admin/profile.php', wp_specialchars($user_identity, true), wp_logout_url(get_permalink()) ) ?></p> <?php else : ?> <p id="comment-notes"><?php _e('Your email is <em>never</em> published nor shared.', 'thematic') ?> <?php if ($req) _e('Required fields are marked <span class="required">*</span>', 'thematic') ?></p> <div id="form-section-author" class="form-section"> <div class="form-label"><label for="author"><?php _e('Name', 'thematic') ?></label> <?php if ($req) _e('<span class="required">*</span>', 'thematic') ?></div> <div class="form-input"><input id="author" name="author" type="text" value="<?php echo $comment_author ?>" size="30" maxlength="20" tabindex="3" /></div> </div><!-- #form-section-author .form-section --> <div id="form-section-email" class="form-section"> <div class="form-label"><label for="email"><?php _e('Email', 'thematic') ?></label> <?php if ($req) _e('<span class="required">*</span>', 'thematic') ?></div> <div class="form-input"><input id="email" name="email" type="text" value="<?php echo $comment_author_email ?>" size="30" maxlength="50" tabindex="4" /></div> </div><!-- #form-section-email .form-section --> <div id="form-section-url" class="form-section"> <div class="form-label"><label for="url"><?php _e('Website', 'thematic') ?></label></div> <div class="form-input"><input id="url" name="url" type="text" value="<?php echo $comment_author_url ?>" size="30" maxlength="50" tabindex="5" /></div> </div><!-- #form-section-url .form-section --> <?php endif /* if ( $user_ID ) */ ?> <div id="form-section-comment" class="form-section"> <div class="form-label"><label for="comment"><?php _e('Comment', 'thematic') ?></label></div> <div class="form-textarea"><textarea id="comment" name="comment" cols="45" rows="8" tabindex="6"></textarea></div> </div><!-- #form-section-comment .form-section --> <div id="form-allowed-tags" class="form-section"> <p><span>You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: </span><?php echo allowed_tags(); ?></p> </div> <?php do_action('comment_form', $post->ID); ?> <div class="form-submit"><input id="submit" name="submit" type="submit" value="<?php _e('Post Comment', 'thematic') ?>" tabindex="7" /><input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /></div> <?php comment_id_fields(); ?> </form><!-- #commentform --> <?php thematic_belowcommentsform() ?> </div><!-- .formcontainer --> <?php endif /* if ( get_option('comment_registration') && !$user_ID ) */ ?> </div><!-- #respond --> <?php endif /* if ( 'open' == $post->comment_status ) */ ?> </div><!-- #comments --> <?php thematic_belowcomments() ?>Vielen dank für die hilfe
-
ok danke wenn ich die pings ausschalte gehts!
-
ja :-Ddass kann sein wenn ich die sitemap manuell auktualisiere kommt auch immer die fehlermeldung: google konnte nicht benachrichtet werden...
kan ich daran was ändern einstellen oder MUSS ich den ping deaktivieren?
danke schon mal -
keiner ne idee? währe dringend!
-
Hi
Wenn ich Seiten oder Beiträge speichern/ löschen will kommt immer in einem weißen fenster die fehlermeldung :PHPWarning: fsockopen() has been disabled for security reasons in /users/pinkfrag/www/wp-includes/class-snoopy.php on line 1150 Warning: fsockopen() has been disabled for security reasons in /users/pinkfrag/www/wp-includes/class-snoopy.php on line 1150 Warning: fsockopen() has been disabled for security reasons in /users/pinkfrag/www/wp-includes/class-snoopy.php on line 1150 Warning: Cannot modify header information - headers already sent by (output started at /users/pinkfrag/www/wp-includes/class-snoopy.php:1150) in /users/pinkfrag/www/wp-includes/pluggable.php on line 390bitte um
hilfe... habe folgene plugins unstalliert:
[size=10]Counterize II
Google XML Sitemaps
meta-tags
WP-Ads
WP-ContactForm (de)
WPContaxe
YouTubeich nutze das theme (leicht abgewandelte)
[/SIZE][size=10]Papyrus 1.0 by Sherihan KhedrMeine Version: [/SIZE]2.3.3 DE-Edition
[size=10]
Ich weiß nicht von was dieser Fehler ausgeht... am theme hab ich schon ca 1 monat nix mehr verändert. Das problem tritt seit 2 Tagen auf.
Veilen dank schon mal
Liebe [/SIZE][size=10]grüße pinkfrag[/SIZE]