ThemeShaper Forums » Thematic

[closed]

Images not showing up in categories

(4 posts)
  • Started 12 years ago by gino
  • Latest reply from gino
  • This topic is resolved

Tags:

  1. gino
    Member

    Hi all

    I am using a custom menu which has some categories in it.

    The original posts have images in them and you can see them if you look at the individual posts.

    But if you access the categories from the menu, only text is diplsyed.

    Any ideas?

    Thanks!!

    Gino

    Posted 12 years ago #
  2. gino
    Member

    Adding to this.....

    Essentially the categories are only showing a fraction of the posts so the images do not show

    Is there a way to show the full posts in a category list?

    Hope this makes sense!

    Thanks

    Gino

    Posted 12 years ago #
  3. thematic displays excerpts and thumbnails by default on all archive pages.

    you'll need to filter the thematic_content() which is the function that determines what gets displayed where. add this to your child's functions.php:

    //change where theme uses excerpts
    function childtheme_content($content) {
    	//full posts on category pages
    	if (is_category()) {
    		$content= 'full';
    	}
    	return $content;
    }
    
    add_filter('thematic_content', 'childtheme_content');
    Posted 12 years ago #
  4. gino
    Member

    Helga, you are, quite literally, a star!

    gino

    Posted 12 years ago #

RSS feed for this topic

Topic Closed

This topic has been closed to new replies.