Community Forums › Forums › Design Tips and Tricks › remove , date ,comment, tag etc from category archive view
This topic contains 10 replies, has 2 voices, and was last updated by braddalton 3 months, 2 weeks ago.
-
AuthorPosts
-
February 6, 2013 at 10:11 am #18455
Hello
I am using grid loop to show articles in grid in a category however i would like to remove all the unnecessary info from the grid
date
tags
author
filled under
do i need to remove a code from some file ? or is there any setting i am missing ?
Thanks
February 7, 2013 at 2:00 am #18599Install the Genesis Simple Edits plugin and remove the shortcodes.
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.February 7, 2013 at 6:19 am #18633That will remove from single posts as well. You can also use this code to remove the post meta and post info from archive pages only by using a conditional tag:
http://www.briangardner.com/code/customize-post-info/
http://my.studiopress.com/snippets/post-meta/
http://my.studiopress.com/snippets/post-info/
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.February 7, 2013 at 6:57 am #18640wonderful. Ill check it out many thanks.any idea how to add a frame around grid posts like in pinterest ?
February 7, 2013 at 8:27 am #18656Whats the url to your grid posts?
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.February 7, 2013 at 10:39 am #18677Hi Brad,
http://www.mathgamesite.com/1st-grade/
of course all thumbnails in the grid will have same size .
i went to your site, thanks for the great content there – i will spread the word.
btw, at a letr stage i will need some paid work to be done on it (more advanced stuff) are you open for that ?
Best,
Alon
February 8, 2013 at 2:21 am #18883Yes, always happy to accept work.
To add styles to a specific category archive page you can use a custom class and use the class as your selector with a declaration for the border property:
http://my.studiopress.com/snippets/custom-body-class/
add_filter( 'body_class', 'add_body_class' ); function add_body_class( $classes ) { if ( is_category( '1st-grade' ) ) $classes[] = 'custom-class'; return $classes; }
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.February 8, 2013 at 3:09 am #18893This reply has been marked as private.
February 8, 2013 at 3:37 am #18899This reply has been marked as private.
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.February 8, 2013 at 3:41 am #18900This reply has been marked as private.
February 8, 2013 at 12:20 pm #18967If you only want to remove this info and meta data from a category, you can hide it using CSS:
.category-4 .post-info .post-meta { display: none; }
WordPress Developer & Consultant
Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered. -
AuthorPosts
You must be logged in to reply to this topic.