shanesque
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image Caption Not WorkingI realized that I was missing some css styling. Thank you though!
Forum: Fixing WordPress
In reply to: Can’t delete postsI’m having the same problem. Sometimes it will permanently delete, sometimes it will not.
Note: All of this is being done from the dashboard.
Forum: Themes and Templates
In reply to: Page.php ProblemYeah you’re right, both of those plugins were conflicting with my theme, I solved the problem now, thanks to the both of you.
Forum: Themes and Templates
In reply to: Page.php Problemhttp://wordpress.pastebin.ca/314861
That’s what my template page looks like.
I’m thinking maybe something is wrong with my comments template which is causing the problem but I’m not really sure.
Forum: Themes and Templates
In reply to: Page.php Problemhttp://www.intricate-life.com/?page_id=9
Even using that template page WP tut, I’m still getting the same results. I took the require once bit out and put just the header include. Still the same results.
Forum: Themes and Templates
In reply to: Page.php ProblemForum: Themes and Templates
In reply to: Page.php Problem<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="storytitle"><b><?php the_title(); ?></b> <?php the_time(' F jS Y ',true); ?></div>
<div class="storyinfo"><img src="/wp-content/themes/frequencies/images/book.gif" align="middle" hspace="2"> <?php _e('Filed under'); ?>
<?php the_category(', ') ?> <img src="/wp-content/themes/frequencies/images/clock.gif" align="middle" hspace="2"> <?php the_time() ?> <img src="/wp-content/themes/frequencies/images/pencil.gif" align="middle" hspace="2"> <b><?php echo(str_word_count(get_the_content())); ?></b> Words in Post</div>
<div class="post">
<?php wp_link_pages(); ?>
<?php the_content(__('Read the rest of this entry')); ?>
<?php comments_template(); ?>
</div>
<?php endwhile; else : ?></div>
<h2><?php _e('Not Found'); ?></h2>
<?php _e('Sorry, but the page you requested cannot be found.'); ?>
<h3><?php _e('Search'); ?></h3>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
<?php get_sidebar(); ?><?php get_footer(); ?>Do you mean like this?
Forum: Themes and Templates
In reply to: Page.php ProblemI don’t understand what you mean…
Forum: Fixing WordPress
In reply to: EntriesThank you, this really helped =).
Forum: Fixing WordPress
In reply to: Popup comments problemIm having the same problem, and when I tried to use the solution you gave, it didn’t work. =\
Forum: Fixing WordPress
In reply to: Comments Popupi know i’d have to edit comments-popup…but what do I need to add to it?