Wie kann man die Uhrzeit bei Kommentaren abschalten/entfernen/ausblenden?
Lg
Prokik
Beiträge von prokik
-
-
Ich habe das gleiche Problem. Im ganzen WP Universum gibt es jede Menge Leute, die auch dieses Problem haben, aber niemanden, der helfen kann. Irgendwie schade...
-
Es liegt anscheinend in den Permalinks. Denn ich habe nun auf die Standard Einstellung bei den Permalinks in WP Admin umgestellt und da hat dann die paged Funktion geklappt.
Was kann ich nun machen, damit diese auch bei der benutzerdefinierten Struktur geht?
Vielleicht gibt es ja doch jemanden, der sich auskennt. -
Diese Lösungsvorschläge habe ich schon alle durch (ausgenommen dem Ersetzen (.+) mit ([_0-9a-z-]+) . Denn die Zeichenfolge kann ich in meiner .htaccess nicht finden. Hier der Inhalt der htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Permalinks in WP-Admin so eingestellt: /%category%/%postname%/
Paged Navigation Doesn't Work Sometimes navigation to second (and subsequent) pages of posts does not work as expected. Your page may generate a link to a page with one of these URIs: http://www.example.com/page/2/ http://www.example.name/category/categoryname/page/2/ http://www.example/year/month/day/page/2/ http://www.example/year/month/page/2/The result of clicking one of those links is that the page loads with all the surroundings (header, footer, sidebar), but instead of a page of posts, there is an error message: "Sorry, no posts match that criteria." This is due to a glitch in the .htaccess file that WordPress generates. To fix it, delete the contents of your .htaccess file and re-create it.- In the Control Panel, go to Manage > Files ([COLOR=#0066cc]More Info on Editing Files[/COLOR])
- Click the link to your .htaccess file to edit its contents
- Copy the contents of the file and paste it to a text file in a text editor. This is a precaution in case your .htaccess file has manual entries for redirects, denials or other [COLOR=#0066cc]handy htaccess tricks[/COLOR]
- Delete all contents from your .htaccess file and click the Update File button.
- In the Control Panel, go to Options > Permalinks.
- Click the Update Permalink Structure button to freshly generate new rewrite rules for your permalinks.
- Test the results using a link that had previously broken.
- Add any manual htaccess entries back in your file (Place manual htaccess entries before the # BEGIN WordPress or after # END WordPress lines.)
You may also perform similar steps by deleting the .htaccess files from the server, creating a fresh empty .htaccess file, changing its permissions to 666, and then in Options > Permalinks generate a new set of htaccess rules by clicking the Update Permalinks Structure button. If that still doesn't work, take a look at the WordPress support forums, specifically, [COLOR=#0066cc]this support post[/COLOR].
-
Bis jetzt konnte mir keiner helfen. Der Fehler ist nach wie vor, aber ich bin auf folgendes draufgekommen:
Wenn ich die paged Funktion von der Kategorie aus benutze klappt es nicht: http://www.taufoase.de/taufe_feier/page/2/
Nutze ich die paged (Blätter) Funktion über das Archiv geht es:
http://www.taufoase.de/2009/01/page/2/
Ich habe WP 2.9.1 installiert und verwende das Theme Glossy Blue. Das Theme habe ich schon gewechselt, der Fehler blieb jedoch.
Wer kann mir helfen? :o
Lg
Horst -
-
Ich bin gerade daraugekommen, dass der Fehler NICHT auftritt wenn ich das Breadcrump Plugin deaktiviere. Liegt es eventuell auch an der Header.php?
Hier die Header.php:
PHP
Alles anzeigen<?php // This file is part of the Carrington Blog Theme for WordPress // http://carringtontheme.com // // Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved. // http://crowdfavorite.com // // Released under the GPL license // http://www.opensource.org/licenses/gpl-license.php // // ********************************************************************** // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // ********************************************************************** if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); } if (CFCT_DEBUG) { cfct_banner(__FILE__); } $blog_desc = get_bloginfo('description'); (is_home() && !empty($blog_desc)) ? $title_description = ' - '.$blog_desc : $title_description = ''; $use_background_img = cfct_get_option('cfct_css_background_images'); $use_background_img == 'no' ? $css_ext = '?type=noimg' : $css_ext = ''; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <title><?php if (function_exists('seo_title_tag')) { seo_title_tag(); } else { bloginfo('name'); wp_title();} ?></title> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'carrington' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'carrington' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url') ?>/css/css.php<?php echo $css_ext; ?>" /> <!--[if lte IE 7]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie.css" type="text/css" media="screen" /> <![endif]--> <!--[if lte IE 6]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie6.css" type="text/css" media="screen" /> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/DD_belatedPNG.js"></script> <script type="text/javascript"> DD_belatedPNG.fix('img, <?php if ($use_background_img == 'yes') { echo '#header, #footer, #header .wrapper, #footer .wrapper, #TB_title, '; } ?>#developer-link a'); </script> <![endif]--> <?php wp_head(); ?> </head> <body> <div id="page"> <div id="top"><a class="accessibility" href="#content"><?php _e( 'Skip to content', 'carrington-blog' ); ?></a></div> <hr class="lofi" /> <div id="header" class="section"> <div class="wrapper"> <strong id="blog-title"><a href="<?php bloginfo('url') ?>/" rel="home"><?php bloginfo('name') ?></a></strong> <p id="blog-description"><?php bloginfo('description'); ?></p> <div id="navigation"> <ul class="nav clearfix"> <?php wp_list_pages('title_li='); ?> </ul> </div><!-- #navigation --> </div><!-- .wrapper --> </div><!-- #header --> <div id="sub-header" class="section"> <div class="wrapper"> <script type="text/javascript"><!-- google_ad_client = "pub-5222659958737115"; /* 468x15, Erstellt 27.12.09 Men�leiste Carrington */ google_ad_slot = "8463073434"; google_ad_width = 468; google_ad_height = 15; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div><!-- .wrapper --> </div><!--#sub-header--> <hr class="lofi" /> <div id="main" class="section"> <div class="wrapper"> <div class="breadcrumb"> <?php if(function_exists('bcn_display')) { bcn_display(); } ?> </div> <br> -
Hallo,
habe 2.9 installiert und ein komisches Phänomen. Sobald ich eine Seite (keinen Artikel) veröffentliche oder speichere steht dann nicht die Statusmeldung "Artikel gespeichert...." sondern ich habe immer eine weisse Seite vor mir und in der Browserzeile steht dann http://www.taufoase.de/wp-admin/page.php
Ich bin auch bereit jemanden für eine hilfreiche Antwort zu bezahlen. Daran soll es nicht liegen. Ich selbst weiss nicht mehr weiter... :sad:
Das ist sehr lästig. Auch habe ich bemerkt, dass das zwischenspeichern darum nicht funktioniert und er mir immer 7 Version als Entwurf speichert. Ich muss immer nach der weissen Seite nochmals ins Backend einsteigen.
Auch kann ich keine automatische Aktualisierung auf WP 2.9.1 machen. Nachdem das Paket runtergeladen wurde steht es wird entpackt, dann passiert nichts.
Ich habe schon einige Plugins deaktiviert. Manchmal klappt es dann wieder nicht. Hat jemand eine Ahnung was ich tun kann, denn diese Plugins hier die ich aktiviert habe, brauche ich alle:
Adsense Injection
Breadcrumb NavXT
btc-meta-description
btc-meta-keywords
btc-meta-robots
Contextual Related Posts
Dagon Design Sitemap Generator
Embed Iframe
Enforce www. Preference
Get Recent Comments
Google XML Sitemaps
KB Robots.txt
Less
MaxBlogPress Ping Optimizer
o42-clean-umlauts
Page Link Manager
RSS Includes Pages
Search Engine Management
SEO Title Tag
Time Zone
Top Level Categories
Update-Monitor
Wordpress Popular Posts
WP-Guestbook
WP-SpamFree
WP Affiliate Elite
Alle Plugins sind am aktuellsten Stand.
Lg
Horst -
Wer kann mir dazu helfen? Soll ich noch eine Datei senden? Denn nun habe ich das Template gewechselt, aber der Fehler ist nach wie vor:
http://www.taufoase.de/gotteslob/page/2/
Danke an die Profis! :-P
Lg
Prokik -
H1 Überschriften Beiträge und Seiten
Hallo Marx,
ich habe zum ersten Mal das Theme gewechselt. Das Design gefällt mir wirklich gut. Aber leider ist das mit den H1 wieder nicht drinnen. Kannst du mir nochmals helfen?
Ich hätte gerne den Beitrags bzw. Seiten Titel als H1 Überschrift im Beitrag bzw. auf der Seite.
Hier wäre die Datei header.php, die ich wahrscheinlich wieder ändern muss, aber wie?
PHP
Alles anzeigen<?php // This file is part of the Carrington Blog Theme for WordPress // http://carringtontheme.com // // Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved. // http://crowdfavorite.com // // Released under the GPL license // http://www.opensource.org/licenses/gpl-license.php // // ********************************************************************** // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // ********************************************************************** if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); } if (CFCT_DEBUG) { cfct_banner(__FILE__); } $blog_desc = get_bloginfo('description'); (is_home() && !empty($blog_desc)) ? $title_description = ' - '.$blog_desc : $title_description = ''; $use_background_img = cfct_get_option('cfct_css_background_images'); $use_background_img == 'no' ? $css_ext = '?type=noimg' : $css_ext = ''; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <title><?php if (function_exists('seo_title_tag')) { seo_title_tag(); } else { bloginfo('name'); wp_title();} ?></title> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'carrington' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'carrington' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url') ?>/css/css.php<?php echo $css_ext; ?>" /> <!--[if lte IE 7]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie.css" type="text/css" media="screen" /> <![endif]--> <!--[if lte IE 6]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie6.css" type="text/css" media="screen" /> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/DD_belatedPNG.js"></script> <script type="text/javascript"> DD_belatedPNG.fix('img, <?php if ($use_background_img == 'yes') { echo '#header, #footer, #header .wrapper, #footer .wrapper, #TB_title, '; } ?>#developer-link a'); </script> <![endif]--> <?php wp_head(); ?> </head> <body> <div id="page"> <div id="top"><a class="accessibility" href="#content"><?php _e( 'Skip to content', 'carrington-blog' ); ?></a></div> <hr class="lofi" /> <div id="header" class="section"> <div class="wrapper"> <strong id="blog-title"><a href="<?php bloginfo('url') ?>/" rel="home"><?php bloginfo('name') ?></a></strong> <p id="blog-description"><?php bloginfo('description'); ?></p> <div id="navigation"> <ul class="nav clearfix"> <?php wp_list_pages('title_li='); ?> <li class="secondary"><?php wp_loginout(); ?></li> <?php wp_register('<li class="secondary">', '</li>'); ?> </ul> </div><!-- #navigation --> </div><!-- .wrapper --> </div><!-- #header --> <div id="sub-header" class="section"> <div class="wrapper"> <?php cfct_form('search'); ?> <div id="all-categories"> <strong id="all-categories-title"><?php _e('Categories:', 'carrington-blog'); ?></strong> <ul class="nav clearfix"> <?php wp_list_categories('title_li='); ?> </ul> </div><!-- #list-categories --> </div><!-- .wrapper --> </div><!--#sub-header--> <hr class="lofi" /> <div id="main" class="section"> <div class="wrapper">
Bitte wieder um deine tolle Unterstützung!
Lg
Prokik -
Ich glaube nicht, dass die Zielgruppe hier jene ist, die ich suche ...:(
Ich wollte nur euren Rat. Habe mir Hyper Cache installiert und bin nun mit den Ladezeiten zufrieden.
PS: Dein Bildschirm dürfte klein sein, wenn du das Impressum bei mir nicht findest... :) http://www.taufoase.de/eine-seite/#Impressum
Lg
Prokik
PSS: Schade, dass hier nicht der Gedanke "Ich möchte helfen" im Vordergrund steht, sondern "Ich bin neidig".... -
Hallo,
ich brauche deinen Rat. Würdest du als Eigentümer der Seite http://www.taufoase.de ein Cache Plugin installieren?
Mir kommt vor, dass die Seiten langsam laden. Oder ist meine Einschätzung nicht richtig?
Lg
Prokik -
Was genau meinst du mit vor I have post?
Hat noch jemand eventuell einen kleinen Tipp, der mir weiterhelfen könnte? :oops:
Lg
Prokik -
Hilfe
Hallo Monika,
kannst du mir nun helfen? Oder eventuell jemand, der sich noch auskennt. Wäre prima.
Lg
Prokik -
Hallo Monika,
ich habe nur die index.php. Danke für deine Hilfe:
Hier die index.php:
PHP
Alles anzeigen<?php get_header(); ?> <?php adsense_deluxe_ads('header'); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if (class_exists('breadcrumb_navigation_xt')) { echo 'Du bist hier: '; // New breadcrumb object $mybreadcrumb = new breadcrumb_navigation_xt; // Options for breadcrumb_navigation_xt $mybreadcrumb->opt['title_blog'] = 'Home'; $mybreadcrumb->opt['separator'] = ' » '; $mybreadcrumb->opt['singleblogpost_category_display'] = true; // Display the breadcrumb $mybreadcrumb->display(); } ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('d') ?></span></div> <div class="post-title"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <span class="post-cat"><?php the_category(', ') ?> </span> <span class="post-comments"><?php comments_popup_link('Deine Nachricht? »', '1 Nachricht »', '% Nachrichten »'); ?></span> </div> <div class="entry"> <?php the_content("»» Gesamten Artikel lesen » " . the_title('', '', false)); ?> </div> </div><!--/post --> <?php endwhile; ?> <div class="navigation"> <span class="Ältere Beiträge"><?php next_posts_link('Ältere Beiträge') ?></span> <span class="Neuere Beiträge"><?php previous_posts_link('Neuere Beiträge') ?></span> </div> <?php else : ?> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> </div><!--/content --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Lg
Prokik -
Hallo,
wenn ich auf "Ältere Beiträge" klicke, dann erscheint immer eine Fehlermeldung:
http://www.taufoase.de/gotteslob/page/2/
Was kann ich dagegen tun? Ich verwende auch ein Plugin Custom Query String bei dem ich einstellen kann wieviele Beiträge angezeigt werden sollen, bevor "Ältere Beiträge" kommt.
Ich habe das Plugin bereits deaktiviert -trotzdem noch Fehlermeldung.
Bitte um deinen Ratschlag...
Lg
Prokik -
Dieser Beitrag hilft leider auch nicht. Problem nach wie vor.
-
Anmerkung noch
Kann diese Fehlermeldung damit etwas zu tun haben? Leider kann ich auch manchmal folgende Seite nicht mal aufrufen:
Alles zur Taufe - Taufoase.de Anmelden
Lg
Prokik
Fehlermeldung lautet:
Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 335835 bytes) in /home/.sites/463/site1252/web/wp-includes/wp-db.php on line 430
Habe dazu diesen Beitrag gefunden:
http://faq.wordpress-deutschland.org/exhausted-php-memory/ -
Hallo,
ich habe einen kniffligen Fall, der mich seit Wochen beschäftigt. Ich bitte dich um deinen Rat und Hilfe:
Wenn ich im Adminbereich eine Seite (also keinen Post) speichern möchte, erscheint nach dem Speichern immer eine weisse Seite.
Dann passiert es auch, dass diese Seiten zwei oder drei Mal abgespeichert werden. Diesen Fehler hatte ich vor rund 2 Jahren. Damals war dies mit einem Upgrade weg.
Nun habe ich gestern von 2.6.2. auf 2.7.1. upgegradet - leider noch immer der Fehler.
Wo kann ich anfangen den Fehler zu beheben. Wie kann ich den original Zustand wiederherstellen? Bitte um deinen Rat... :oops:
Lg
Prokik -
Verstehe nur Bahnhof. Ich möchte gerne auf einer statischen Seite die aktuellsten Beiträge einbinden. Wie kann ich das machen? Bei allen Recent Posts Plugins kann ich nur immer den Inhalt in der Sidebar einblenden.
Danke
Prokik