Jump to content
Sign in to follow this  
jankowalski

Post Excerpt or Summary Handling for custom post type needed

Recommended Posts

jankowalski

in 'blog and Post' there is control for 'Post Excerpt or Summary Handling' i set to display it for blog/post pages as there is no separate control for books or videos or other custom post types. i reported it before, this function is necessary. i have created some sections with custom loops and i use them with diferent templates if there is any parameter for this loops so i could hide excerpt from there. checking blog/post pages turns excerpt both on posts as on custom post types. Any hack to disable it on custom posts types? that s the code from loop i use for books and movies and i don t want excerpt below them. what do i need hook? css modification ti hide excerpt? querry parameter for my loop:

query_posts( array(
	    'post_type' => array( 'books', 'movies' ),
		'posts_per_page' => 2,
	    'paged' => get_query_var( 'page' ),
		'orderby' => 'rand',
		'year' => '2012'

? thanks

Share this post


Link to post
Share on other sites
johnny_n
In your base styles.css: [code] body.single.single-books .fpost .post-excerpt {display:none!important;} body.single.single-movies .fpost .post-excerpt {display:none!important;} [/code]

Share this post


Link to post
Share on other sites
Jenny
Without being able to see your site, it is difficult to give the proper CSS to use, but something like @johnny_n 's suggestion should work.

Jenny :: Web designer at Simple Mama (follow me at @simplemamacom)

Check out Share Me, a social sharing add-on for DMS that is super simple to set up.

Share this post


Link to post
Share on other sites
jankowalski
@johnny_n I do not want to hide titles, i want to show h3 titles before this section. @simple_mama i ve send you my link by priv. thanks

Share this post


Link to post
Share on other sites
Jenny
Hi Jan. I think we got this resolved via PM. If so, please "accept" an answer, otherwise please let us know if you still need help. :)

Jenny :: Web designer at Simple Mama (follow me at @simplemamacom)

Check out Share Me, a social sharing add-on for DMS that is super simple to set up.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×