Title: Centric pro?
Last modified: August 30, 2016

---

# Centric pro?

 *  [greenhostit](https://wordpress.org/support/users/greenhostit/)
 * (@greenhostit)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/centric-pro/)
 * Hi there! I love your plugin.
 * We are using CentricPro theme from StudioPress. The issue is that on the blog
   categories, the “title” is displayed twice. Do you know how to remedy this issue?
 * [https://wordpress.org/plugins/display-featured-image-genesis/](https://wordpress.org/plugins/display-featured-image-genesis/)

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

 *  Plugin Author [Robin Cornett](https://wordpress.org/support/users/littlerchicken/)
 * (@littlerchicken)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/centric-pro/#post-6608282)
 * Centric Pro adds the Genesis archive headline/description in that top area, so
   it’s a custom case that the plugin cannot automatically account for. If you want
   to keep the theme’s output and remove what the plugin is doing, you can try this
   code:
 *     ```
       add_filter( 'display_featured_image_genesis_modify_title_overlay', 'rgc_remove_from_categories' );
       add_filter( 'display_featured_image_genesis_term_description', 'rgc_remove_from_categories' );
       function rgc_remove_from_categories( $output ) {
       	if ( is_tax() ) {
       		return '';
       	}
       }
       ```
   
 * If you want to keep the plugin output and remove the theme’s work, then you need
   to look in the `functions.php` file for the `centric_post_title` function and
   modify that.
 * Hope that helps!
 *  Thread Starter [greenhostit](https://wordpress.org/support/users/greenhostit/)
 * (@greenhostit)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/centric-pro/#post-6608294)
 * Thank you so much, Robin! You are awesome. 🙂

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

The topic ‘Centric pro?’ is closed to new replies.

 * ![](https://ps.w.org/display-featured-image-genesis/assets/icon-256x256.jpg?rev
   =995604)
 * [Display Featured Image for Genesis](https://wordpress.org/plugins/display-featured-image-genesis/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/display-featured-image-genesis/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/display-featured-image-genesis/)
 * [Active Topics](https://wordpress.org/support/plugin/display-featured-image-genesis/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/display-featured-image-genesis/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/display-featured-image-genesis/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [greenhostit](https://wordpress.org/support/users/greenhostit/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/centric-pro/#post-6608294)
 * Status: not resolved