nmallory
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Photoblog themes for WP? Wishful thinking?What happens if you have more than 5 pics to show? It loaded slow and the pictures were incomplete on my IE. Will try Firefox when I get home.
Forum: Your WordPress
In reply to: How do you like me now?Doh, thanks for mentioning about the meta tags. I added them last night from a meta generator and didn’t think to check the validation.
The background, I made “fixed” this morning. I downloaded Firefox last night and ironically, didn’t notice a problem with it until I got to my work PC which has IE this morning.
The padding in the recipes is something I’ve been trying to work on. The code for the nifty corners screwed up the formatting there and I haven’t been able to figure out how to correct it.
I’ll look into the spacing too. What I find interesting is that there doesn’t appear to be any real rhyme or reason as to how much space is showing up between the “(more…) and the comments line and then between that and the next post. It has befuddled me.
Thanks again for your comments!
Forum: Plugins
In reply to: REQ: Fitness diary pluginI would be very interested in such a plug-in as well. Sounds like a big project though. ??
Forum: Themes and Templates
In reply to: My First Themeo…k… sorry for the double comments. Don’t know why the first wasn’t showing.
Forum: Themes and Templates
In reply to: My First ThemeHmmm…I posted to this once, but it’s disappeared. I like this. It’s nice. I wonder how hard this would be to do with Piglet.
Forum: Themes and Templates
In reply to: My First ThemeI like it. I wonder if I could do a Piglet version. The colors are kind of right. Hmmmm.
Forum: Your WordPress
In reply to: Did you get the memo?Nice site. I’ve forwarded it to many friends. ??
Forum: Fixing WordPress
In reply to: User Error with Email Notification Plugin v2.1.1Hmmmm…O.K. I was able to go into the MySQL table using cpanel and delete the records. It would be nice for the next version to include this capability from the WP admin panel. ??
Forum: Your WordPress
In reply to: The Weekend Chef – New & Improved!Here’s the fix, in case anyone wants to know how to fix this in the future:
Open the-excerpt-reloaded.php file in your plugins directory and find this line:
$excerpt .= "<div class=\"more-link\"> <a href=\"". get_permalink() . "#more-$id\">$more_link_text</a></div>";
and change it to:
`$excerpt .= "<span class=\"more-link\"> $more_link_text</span>";'
The drawback is that it doesn’t put the more link text on a new line, but you might be able to add a
before the <span> to resolve that if you need to.Forum: Fixing WordPress
In reply to: Need Help with Code ValidationIn case anyone wants to know how to fix this in the future:
Open the-excerpt-reloaded.php file in your plugins directory and find this line:
$excerpt .= "<div class=\"more-link\"> <a href=\"". get_permalink() . "#more-$id\">$more_link_text</a></div>";
and change it to:
`$excerpt .= "<span class=\"more-link\"> $more_link_text</span>";'
The drawback is that it doesn’t put the more link text on a new line, but you might be able to add a
before the <span> to resolve that if you need to.Forum: Fixing WordPress
In reply to: Need Help with Code ValidationCrowspeaker – I realize that. However, it’s the_excerpt_reloaded() plugging which is not writting the closing out tags before the div that is causing the problem.
techwench – I tried unclicking that option and got 23 errors instead of 5.
I also tried moving the code in the plug in that does the balanceTags() to before it adds the “more” link but that resulted in no closing tags being written and 23 errors as well.
Forum: Plugins
In reply to: Problem with the_excerpt_reloaded pluginI had this issue and to resolve it, I had to do a check to see if is_home(). If it was then I used the_excerpt_reloaded(), if it wasn’t, then I used the_content().
Forum: Your WordPress
In reply to: The Weekend Chef – New & Improved!I’ve resolved all but an issue with the
<div>
and that appears to be the result of the_excerpt_reloaded plugin which apparently is “fixing” the unclosed tags after the<div>
instead of before it and therefore it makes the page XHTML invalid. ?? Anyone know how to resolve this?TIA!
Forum: Fixing WordPress
In reply to: Need Help with Code ValidationHmmm…I replied to this but it seems to have disappeared.
I managed to get the lists sorted out. It had to do with the Textile 1.0 plug-in and I had to deactivate it and then edit all the posts I’d written since I turned it on.
The issue with the
<div>
remains and appears to be the result of the_excerpt_reloaded which apparently is “fixing” the unclosed tags after the<div>
instead of before it and therefore it makes the page XHTML invalid. ?? Anyone know how to resolve this?TIA!
Forum: Fixing WordPress
In reply to: Need Help with Code ValidationOK How do I get them out of the
<p>
tags? WordPress appears to be adding them it by it’s lonesome. These ordered and unordered lists are in posts I wrote.