chawke
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts in Page] Excerpt Behavior InconsistencyNevermind about the “Continue Reading”.
Thanks again!
Forum: Plugins
In reply to: [Posts in Page] Excerpt Behavior InconsistencyAwesome! Looks great. Thank you very much, Eric.
The only odd thing I see is that some of the posts are missing the “Continue Reading” link. Any idea why?
No, I’m not in Seattle. I’m in Phoenix.
“chawke” is my first initial and last name.
What does it mean in Seattle?
Forum: Plugins
In reply to: [Posts in Page] Excerpt Behavior InconsistencyGot it, Eric. Thanks.
Ready for some CSS!
Forum: Plugins
In reply to: [Posts in Page] Move Excerpt & "Continue Reading" next to ThumbnailOkay, I posted a response to that issue. Thanks.
Forum: Plugins
In reply to: [Posts in Page] Excerpt Behavior InconsistencyYes, I put the output loop file in my theme directory and have edited it, but I’m new to this type of coding so I’m not sure what I need to close out the ivycat-post divs.
<!-- Note: if you make changes to this file, move it to your current theme's directory so this file won't be overwritten when the plugin is upgraded. --> <!-- Start of Post Wrap --> <div class="post hentry ivycat-post"> <!-- This is the output of the post title --> <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <!-- This will output of the featured image thumbnail --> <div class="featured-image"><?php the_post_thumbnail( 'thumbnail' ); ?> <!-- This is the output of the excerpt --> <div class="entry-summary" > <?php the_excerpt(); ?> </div> </div> <!-- // End of Pos
Forum: Plugins
In reply to: [Posts in Page] Excerpt Behavior InconsistencyI just figured it out the excerpt issue.
In the Page editor, text viewer, I found that the pages that weren’t behaving property had
<pre>
before and after the shortcode, while the others didn’t. Once I removed them, they were fixed.If anyone know how I can add the divider lines, I’d appreciate some help there.
[Please post markup between backticks or use the code button. Your post may now have been permanently damaged by the forum’s parser.]
Forum: Plugins
In reply to: [Posts in Page] Spacing is messed upI kept working on it and fixed a lot of the spacing issues, but many of the excerpts are not wrapping to the next line and instead run off the right side of the page.
Here’s the code now:
<!– Note: if you make changes to this file, move it to your current theme’s
directory so this file won’t be overwritten when the plugin is upgraded. –><!– Start of Post Wrap –>
<div class=”post hentry ivycat-post”>
<!– This is the output of the post title –>
<h2 class=”entry-title”>“><?php the_title(); ?></h2><!– This will output of the featured image thumbnail –>
<div class=”featured-image”><?php the_post_thumbnail( ‘thumbnail’ ); ?><!– This is the output of the excerpt –>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div></div>
<!– // End of Post Wrap –>Any idea why the text is not wrapping on some pages?