kaonashi
Forum Replies Created
-
Forum: Plugins
In reply to: {NEW PLUGIN} Auto_LinkCan I customize this plugin so if I refer to an older post, it will provide the link to that post?
Forum: Themes and Templates
In reply to: Whats this thingie in this header?It’s the K2 theme (https://getk2.com/), which is what the Sketchcrawl blog uses. I don’t know if you can link them to categories though since as far as I know, they’re the result of creating extra pages.
Forum: Fixing WordPress
In reply to: Unintentional bold textYou’re right podz, but at the same time the screenshot shows a calendar.
I played around with the blog, and I just noticed that the calendar AND the archives don’t show up on the main page. If you click on a permalink, if you click on a category, etc. the calendar and archives show up.
I guess it’s the fault of the theme after all, rather than some weird WordPress quirk ??
Thanks!
Forum: Fixing WordPress
In reply to: Unintentional bold textWow, a missing < in one post affects the other posts below it? Strange. Thanks very much you guys! I’ll fix it right away.
Now, what about the calendar that I can’t see? I’ve switched to the theme that has the missing calendar.
Forum: Your WordPress
In reply to: Site review – www.andreasrecipes.comHehe, looks like someone moved it while I typed my message ??
Forum: Your WordPress
In reply to: Site review – www.andreasrecipes.comThere’s a forum for this. If you scroll down to the bottom of the page, there’s a forum called “Your WordPress”. Perhaps one of the moderators can move this post there?
Forum: Fixing WordPress
In reply to: Problem with iFrame and javascript*bump*
I don’t think anyone saw my question the first time around. I really need someone’s help on this. Thanks very much.
Forum: Fixing WordPress
In reply to: header error: fatal functionI decided to re-upload the WP files so everything looks ok again.
Thanks!
Forum: Fixing WordPress
In reply to: header error: fatal functionTo be more specific, I edited this:
<?php get_header(); ?>
(“get sidebar” code was here)
<div id=”wrapper”>
<div id=”content” class=”narrowcolumn”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></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 edit_post_link(‘Edit’,”,’|‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Next 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.
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?> (now it’s here)
</div>
<?php get_footer(); ?>
I don’t understand your advice though. Can you please be more specific?