peanut
Forum Replies Created
-
Forum: Plugins
In reply to: AZIndex – CSS Validation IssuePS: I just noted the plugin author’s email address in the code I posted above. Sent an email to him with a link to this discussion. Still, if anyone else can help me with the fix, I’d appreciate it. 🙂
Forum: Fixing WordPress
In reply to: comments – cannot modify header info…Forum: Plugins
In reply to: Number of posts on category pages different from front pageOy. Thank you so much! 🙂
Forum: Fixing WordPress
In reply to: Link Manager main page: Can I do this?Anyone that can help?
Forum: Fixing WordPress
In reply to: Link Manager main page: Can I do this?Love the plug-in. I’ve got a stupid problem that I can’t figure out. How do I alphabetize the category list in the pulldown? I know it has to be simple, but just not getting it. Any help appreciated.
Forum: Fixing WordPress
In reply to: Pictures on blogHi Mychele,
Have you tried this guide?
http://codex.wordpress.org/Using_ImagesIf something’s not clear in it, ask about it and maybe someone can provide more of an explanation (which may result in improving any documentation that needs to be more clear).
Forum: Installing WordPress
In reply to: Disable Comments and New UsersMay wish to take a look at:
How to Comment Out PHP CodeForum: Themes and Templates
In reply to: Fall-in-love theme by DilipAs to the errors, believe I found a solution. Hope it will help:
http://wordpress.org/support/topic/57801?replies=7#post-313559Forum: Themes and Templates
In reply to: Dilip’s “Fall in Love” Theme Error MessageFound a solution that works for me. Hope it will help:
http://wordpress.org/support/topic/57801?replies=7#post-313559Forum: Fixing WordPress
In reply to: Fall-in-love theme comment errorsI started thinking about it being a “static” page that was the only type of page creating the error… So, checked out other themes to see the difference… The difference ended up being there was no page.php file. (There is not one in Dilip’s Aesthetic theme either, so this solution should work for it as well.)
What I did was to create a page.php file and put it in the fallinlove theme directory…
Although I know next to nothing about php (that’s my disclaimer), from experimenting, it appears the contents of that file need to be at minimum:
<?php get_header(); ?><div id="post-<?php the_ID(); ?>" class="post">
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(__('Read more »')); ?>
<?php
wp_link_pages();
?>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?><?php get_footer(); ?>
</div>
</body>
</html>I hope this will help others.
Forum: Fixing WordPress
In reply to: Fall-in-love theme comment errorsAnd it was also noted in this thread:
http://wordpress.org/support/topic/56768?replies=7Forum: Themes and Templates
In reply to: Dilip’s “Fall in Love” Theme Error MessageI’m experiencing the same issues with the “static” pages. Even downloading the theme again is giving the same results.
http://wordpress.org/support/topic/57801?replies=5#post-312334Also have had no luck in reaching the theme developer. 🙁
Forum: Fixing WordPress
In reply to: Fall-in-love theme comment errorsJust found that someone else has posted about this as well and also had no luck contacting the theme developer…
http://wordpress.org/support/topic/57709?replies=3Forum: Fixing WordPress
In reply to: Fall-in-love theme comment errorsI wish it was that simple. No, it was never working for me. To make sure it wasn’t anything I did or that possibly I had a bad download, as I stated, I tried downloading the theme again and installing it in a new directory…still receive the errors on that install. I have other themes, and when switching to them, I do not receive the errors. It is theme-related…I just don’t where to fix it.
Forum: Fixing WordPress
In reply to: Fall-in-love theme comment errorsAny suggestions? I really don’t want to abandon this theme as I’ve made some customizations to it and really like the layout. I just hate to put in more time if I can’t fix it… 🙁