• Hi!

    My WordPress-installation is running fine, I’ve just got one little problem: when I switch themes (from a localised default Kubrick to the english Kubrick), my posts look strange…
    This is how they’re supposed to look:

    http://www.japhy.at/wp-content/images/ok.gif

    After switching to the other theme, this is what they’re looking like:

    http://www.japhy.at/wp-content/images/not_ok.gif

    Pictures are missing, and some formats are lost.

    Any idea what I could do? After switching back, everything is fine and well again…

    It doesn’t happen on the front page, btw, only on the archive pages!

    Thanks!

    regards,
    Japhy

Viewing 1 replies (of 1 total)
  • The new theme is using the_excerpt on archive pages, your old theme used the_content. Change that, and all will be good.
    Change:
    <div class="entry">
    <?php the_excerpt() ?>
    </div>

    to
    <div class="entry">
    <?php the_content() ?>
    </div>

    in archive.php

Viewing 1 replies (of 1 total)
  • The topic ‘strange looking posts after switching themes’ is closed to new replies.