Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • if the clear cache stuff does not work, then once again clear your cache, rename your plugins folder and try logging in again. You should then see a script asking you to upgrade the database. do that and rename the plugins folder back to plugins, and re activate our plugins and all should be fine

    Hi, just to add to this, on version 2.1 you need to edit out this line:

    //$category_description = apply_filters(‘pre_category_description’, $category_description);

    and if you want to add text into the category pages, you should refer here

    and use this code

    <?php if ( $paged < 2 ) { // Do stuff specific to first page?>
    <?php if ( is_category() ) : ?>
    <h2 id=”category-name-header”><?php echo $cache_categories[$cat]->cat_name ?></h2>
    <?php add_filter(‘category_description’, ‘wpautop’); ?>
    <?php add_filter(‘category_description’, ‘wptexturize’); ?>
    <div id=”category-description”>
    <?php echo category_description(); ?>
    </div>
    <?php endif; ?>
    <?php } else { // Do stuff specific to non-first page ?>
    <?php } ?>

    in the admin template just above

    <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>

    and it shoudl all work fine.

    sepguy

    (@sepguy)

    for what its worth, ive tried to load this on 2.1 and had no joy, I don’t know if its me or the plugin…

Viewing 3 replies - 1 through 3 (of 3 total)