Viewing 3 replies - 1 through 3 (of 3 total)
  • I ran into this same problem today with the SEO plugin and Genesis. Before WordPress SEO we have Genesis options to show category title/description. Activate WordPress SEO and no more options.

    Well, I don’t have a solution to turn the titles & descriptions on through WordPres SEO but I figured out a way to display my category titles using conditional tags and the Genesis simple hooks plugin. Maybe it will help you.

    Within the genesis_before_loop Hook I put the following code.

    <?php
    if(is_archive()) { ?>
        <h1 class="entry-title"><?php single_cat_title(); ?></h1>
    <?php }
    ?>

    This seems to work well to output the titles. Perhaps something similar can be done for the descriptions.

    I’m having the same issue .. with WordPress SEO activated the Genesis Category Archive options are no longer available on the Edit Category page and category descriptions are not displayed on the category archive pages.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WordPress SEO by Yoast] Category Description and Title is removed (Genesis WP)’ is closed to new replies.