Ok danke, das werde ich mal machen! :)
Beiträge von Stefan8000
-
-
Ja da hast du recht. Ich weiß nur nicht wo dieses iFrame her kommt? :-(
-
Hallo :)
Ich bin bei meiner Website http://www.citiesskylinesworld.de momentan am Geschwindigkeit optimieren und habe mit dem Test von Pingdom festgestellt, dass irgendeine Twitter-Einstellung ordentlich Zeit beim Laden kosten. Dabei nutzt meine Seite gar kein Twitter und ich will's auch gar nicht nutzen. Allerdings weiß ich eben nicht, wie ich das deaktiviert bekomme, damit es auch nicht lädt. An den "Teilen" Buttons an meiner Website scheint es auch nicht zu liegen, da ich diese testweise mal deaktivert hatte und keine Änderung merkbar war.
Auf dem Bild sind die Daten von der Leistungmessung von Pingdom zu erkennen. Vielleicht weiß ja jemand mehr darüber. Im Internet habe ich dazu nichts gefunden.
-
Danke für deine Antwort!
ich habe
PHP
Alles anzeigen</div> <!-- Entry End --> <h2 class="post_title" ><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php if ( tpo_option('tpo_blog_excerpt_disable') == true ) : [COLOR=#ff0000]the_content[/COLOR](''); else: [COLOR=#ff0000]the_excerpt[/COLOR](); endif; ?>ganz einfach miteinander getauscht, nun klappt es wieder :D
[/CODE] -
-
Oder hab jetzt die Index.php gefunden, stimmt da etwas nicht?
PHP
Alles anzeigen<?php /** * @package WordPress * @subpackage Templuto */ get_header(); ?> <div id="content" class="narrowcolumn" > <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <div class="entry" > <div class="entry_meta"> <?php if ( TPO_BLOG_SHOW_DATE == true ) : ?> <span class="datetime" datetime="<?php echo get_the_time('F j, Y') ?>" > <div id="month"><?php echo get_the_time('F') ?></div> <br/> <div class="year"><?php echo get_the_time(' j. Y') ?></div> </span> <?php endif; ?> <?php if ( TPO_BLOG_SHOW_COMMENTCOUNT == true ) : ?> <span class="metacomment" > <?php comments_popup_link(__('No Comments', THEME_SLUG), __('1 Comment', THEME_SLUG), __('% Comments', THEME_SLUG)); ?> </span> <?php endif; ?><br/> <?php if ( TPO_BLOG_SHOW_AUTHOR == true ) : ?> <span class="author" > <?php _e('Posted By',THEME_SLUG);?> <?php echo get_the_author() ?></span> <?php endif; ?> <br/> <?php if ( TPO_BLOG_SHOW_CATEGORIES == true ) : ?> <?php if (count( get_the_category())) : ?> <span class="category" ><?php _e('In',THEME_SLUG);?> <?php echo get_the_category_list( ', ' ) ; ?> </span> <?php endif; ?> <?php endif; ?> </div> <?php if ( tpo_option('tpo_blog_cat_thumbnail') == true ) : $width = tpo_option('tpo_blog_cat_thumbnail_width'); $height = tpo_option('tpo_blog_cat_thumbnail_height'); if (!$width) $width = THUMB_WIDTH; if (!$height) $height = THUMB_HEIGHT; $postimage = get_post_meta($post->ID, '_post_image', true); if ($postimage) : $postimg = tpo_image_resize( $height, $width, $postimage); ?> <div class="feature_image" > <a class="load_blog_img" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"> <img src="<?php echo $postimg; ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" /> </a> </div> <?php endif; endif; ?> </div> <!-- Entry End --> <h2 class="post_title" ><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php if ( tpo_option('tpo_blog_excerpt_disable') == true ) : the_content(''); else: the_excerpt(); endif; ?> <div class="readmore"><a href="<?php the_permalink() ?>" ><?php echo TPO_BLOG_READMORE_TEXT; ?></a></div> <?php if ( TPO_BLOG_SHOW_TAGS ) : ?> <?php $post_tags = wp_get_post_tags($post->ID); if(!empty($post_tags)) { ?> <div class="tag" ><?php the_tags( __('Tags', THEME_SLUG) . ': ', ', ', '<br />'); ?></div> <?php } ?> <?php endif; ?> <div id="post_shadow"> </div> </div> <!-- Post End --> <?php endwhile; ?> <div class="navigation"> <?php if (function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="alignleft"><?php next_posts_link(__('« Older Entries', THEME_SLUG )) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', THEME_SLUG )) ?></div> <?php } ?> </div> <?php else : ?> <h2 class="center"><?php _e('Not Found', THEME_SLUG ) ?></h2> <p class="center"><?php _e('Sorry, but you are looking for something that is not here.', THEME_SLUG ) ?></p> <?php get_search_form(); ?> <?php endif; ?> </div> <!-- Content End --> <?php get_sidebar(); ?> <div class="clearboth"></div> <?php get_footer(); ?> -
Hallo,
ich bin noch eher Anfänger und betreibe meinen Blog nun erst seit ein paar Tagen. Nachdem ich meinen Blog noch einmal komplett von vorne aufbauen wollte, habe ich ihn neu installiert und das Design "musiccafe" wieder installiert. Für meinen Blog ist das einfach perfekt. Seit der Neuinstallation werden die Artikel auf der Startseite aber nur noch in der Kurzfassung angezeigt, auch wenn ich in den Einstellungen unter Lesen einstelle, dass der vollständige Artikel angezeigt werden soll. Ich hab schon viel gesucht aber keine passende Lösung gefunden.
Ich habe im Theme auch keine Funktion wie diese gefunden, die man verändern müsste:
Zitat[COLOR=#000000] [COLOR=#0000BB]<?php the_excerpt[/COLOR][COLOR=#007700](); [/COLOR][COLOR=#0000BB]?>[/COLOR] [/COLOR]