altobelli 0 Report post Posted February 21, 2011 I've created two category specific pages. Is it possible to display the content with a thumbnail and excerpt as it is on my blog page? Blog page - http://www.paulaltobelli.com/blog/ Category #1 page - http://www.paulaltobelli.com/category/concerts/ Category #2 page - http://www.paulaltobelli.com/category/music/ Pls note, I was able to achieve this display by selecting All blog/post pages under Post Thumbnail Placement and Post Excerpt Placement. The issue with this option is that I don't want the thumbnail and excerpt on the Single Post Page display. Thank you. Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 21, 2011 What I would do is go ahead and mark that option so it shows on all blog/post pages...then we can edit _posts.php look for this line: `<?php if(pl_show_thumb($post->ID)): ?>` and add something like this: `<?php if(pl_show_thumb($post->ID) && !(is_single())): ?>` this will exclude single post pages... try it out Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 21, 2011 Thanks Adam. It worked like a charm.. -p Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 21, 2011 I thought it worked but then I noticed the thumbnail is gone from the single post but the excerpt is still displayed. Single Post page - http://www.paulaltobelli.com/feb-17-1985-joan-jett-blackhearts-tower-theatre/ Category #1 page - http://www.paulaltobelli.com/category/concerts/ Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 21, 2011 OK - I hid the excerpt by augmenting <?php if(pl_show_excerpt($post->ID)):?> to <?php if(pl_show_excerpt($post->ID) && !(is_single())): ?> All that's left is fixing the title. Single Post page - http://www.paulaltobelli.com/feb-17-1985-joan-jett-blackhearts-tower-theatre/ Notice how it wraps after 371 px. Where do I fix this? Thank you. Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 22, 2011 `.post-title h2{width:640px}` Thanks, Bryan Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 22, 2011 Thanks Bryan. Where am I making the change? What file? -p Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 22, 2011 You can add that to the custom code - custom css area in the theme options. Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 22, 2011 Okay. Adding the code fixed the single page h2 wrap issue but caused a new issue with the blog and category page results. Single Post page - http://www.paulaltobelli.com/feb-17-1985-joan-jett-blackhearts-tower-theatre/ Category #1 page - http://www.paulaltobelli.com/category/concerts/ Thoughts? Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 23, 2011 Update to: `.blog .post-title h2{width:640px}` Thanks, Bryan Share this post Link to post Share on other sites
altobelli 0 Report post Posted February 23, 2011 No, that didn't work either. I added .blog .post-title h2{width:640px} in custom css area in the theme options. No, it's back to where it was before - Category page looks fine the the Single Post page wraps. Single Post page - http://www.paulaltobelli.com/feb-17-1985-joan-jett-blackhearts-tower-theatre/ Category #1 page - http://www.paulaltobelli.com/category/concerts/ Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 23, 2011 I'm a little confused, but let's give this a shot: `.single .post-title h2{width:640px}` Thanks, Bryan Share this post Link to post Share on other sites