Excerpts appearing in portfolio category

Hi guys
This issue is the same as a previous post

Hello There,

Thanks for posting in!

Please be advised that the excerpts will be display in the blog index and page archives . That includes the portfolio category pages as well. Do you want to hide or remove the excerpts in the portfolio page and portfolio category pages? If that is the case, since the child theme is already set up, please add the following code in your child theme’s functions.php file

// Remove Portfolio excerpts
// =============================================================================
function remove_portfolio_excerpt( $excerpt ){
    if ( is_post_type_archive('x-portfolio') ) {
         $excerpt = '';
    }
}
add_filter('the_excerpt','remove_portfolio_excerpt');
// =============================================================================

We would loved to know if this has work for you. Thank you.

Hi guys
The results are in and success
portfolio category page
http://richardrosebery.com/gallery-category/test/
Portfolio item page
http://richardrosebery.com/gallery/testing-a-new-item/
thanks a heap

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.