unblurred
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New theme and now comments won’t workSo switch out the first line with <?php comments_template(); ?> ?
Forum: Fixing WordPress
In reply to: New theme and now comments won’t workany help?
Forum: Fixing WordPress
In reply to: New theme and now comments won’t workHere is my index.php file. I do have a comments.php page but I just uploaded it from the kubrick theme. Would that be the problem?
<?php get_header(); ?> <div id="blog" class="narrowcolumn"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: “Comments closed” on a PageNevermind, I found it … sorry
Forum: Fixing WordPress
In reply to: Cannot break more than one lineI might try that. I found a kinda crazy way around it tho. I added a after my blank lines in the page content box and that way it still broke the lines. It looks a bit messy but as long as it works and validates right ??
Forum: Themes and Templates
In reply to: only first post is formattedAh ha!!! That was it. Thank you so so so so much. I think I remember before the upgrade, that same php line was before the layout. Bloghead is just the style for where I have the blog title and date and has the brown background. Once again, thanks so much, you are a life saver ??
Forum: Themes and Templates
In reply to: only first post is formattedSo how do I get it in the loop, do I get rid of all the space and make it look like this..
<div class=”bloghead”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
[<?php the_date(); ?>] ” rel=”bookmark”><?php the_title(); ?> @ <?php the_time() ?></div>
I am really tired and I am sorry if these questions are getting stupid.
Forum: Themes and Templates
In reply to: only first post is formattedWow, I am feeling really dumb right now because in my coding I don’t see any open divs. I did find out that I needed to make classes and ids and that is fixed but I am still getting 4 errors saying I am closing a div that isn’t open but I am seeing that it is. Here is the coding of my index file…
<?php include(“header.php”); ?>
<?php include(“sidebar.php”); ?>
<div id=”blog”>
<div class=”bloghead”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>[<?php the_date(); ?>] ” rel=”bookmark”><?php the_title(); ?> @ <?php the_time() ?></div>
<div class=”blogmid”>
<?php the_content(__(‘(more…)’)); ?>Lubbing:
<?php comment_plugger(); ?></div><p align=”right”>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?><?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?><center>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
</center><?php include(“footer.php”); ?>
I just don’t see it.
Forum: Themes and Templates
In reply to: only first post is formattedI have cleaned up things a bit and got rid of all tables. Everything is a div layer and a header, sidebar, and footer is included into the index.php file. Now it looks worse than before, I am sure I am just missing something as little as a colon though. Anymore help please?
Forum: Themes and Templates
In reply to: only first post is formattedI am going to try and convert to div layers and see if that fixes it. I will also try to clean it up in the process, I was trying to get my layout up and working quick so I didn’t take a lot of time.
Forum: Themes and Templates
In reply to: only first post is formattedI did plan on switching to all div layers since I just learned it and it is so much cleaner. Would you, or anyone else, be able to verify that all my WordPress coding is still good to go? I always worry I deleted something important ??
Forum: Themes and Templates
In reply to: only first post is formattedI am using the newest version of Firefox, the brown background to the header where it has the date and blog title is only brown on the first post on the page.
Forum: Installing WordPress
In reply to: Fatel error while upgradingI did all that but it appears that my folders weren’t deleted and that was the problem ?? Thanks for the help
Forum: Plugins
In reply to: Removing some smiliesThank you so much!
Forum: Everything else WordPress
In reply to: Database error: [You have an error in your SQL syntax…Thank you very much.