rdavis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category Template with CommentsWell crap.
THanks.
Forum: Fixing WordPress
In reply to: Category Template with CommentsNo, you’re correct (as usual), but what I’m asking is why, given that the two pages on my site are the exact same template, do the comments appear on one and not the other?
Forum: Plugins
In reply to: Excerpt on Main PageYeah, it’s edited in the wrote post area, not plugin. I just created a new class, rather than use then the first letter psuedo element rule. It’s pretty amatuer, but it works.
Forum: Plugins
In reply to: Excerpt on Main PageOkay, I figured out how to do this in this theme:
Like moshu so helpfuly said (thanks again!), replace the_content in the post.php file to get the excerpt to list on the main page. Open your single.php file (mine wasn’t listed under the “Edit Themes,” so I had to ftp it back and forth) and replace the line: <?php require(‘post.php’); ?>
with the line: <?php the_content(); ?>
And your done. The one bad thing about this was the bland beginning of your text, so I created a new class for the first letter in the post to be larger and colored, similar to how you seen in a magazine article. Good luck!Forum: Plugins
In reply to: Excerpt on Main PageWhere in the single.php template? And thanks for the quick response.