mmallett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: category managementThis link is a classic example of how some things are a little too assumed when it comes to blog code etc.
How is this plugin or whatever it is installed?
Forum: Plugins
In reply to: Category Manager Replacement??Anyone know of a simple Category manager?
Forum: Fixing WordPress
In reply to: Corrupt BlogThanks! I found a plugin to do this since earlier WP versions don’t have the Export option.
Forum: Fixing WordPress
In reply to: Change Permalinks For Future posts only?Thank you for your reply.
There is an instruction: “You should update your .htaccess now.”
I’m not up on this stuff, nor do the tech’s for our server know what this means.
How do I update the .htaccess?
Forum: Fixing WordPress
In reply to: Change Permalinks For Future posts only?Okay, let me put it another way. If I change the permalink structure to a “prettier” format, does this change all the links, including hyperlinks that have their origin with the blog itself?
Forum: Fixing WordPress
In reply to: Incomplete URL’sThanks then for narrowing down the problem!
Forum: Fixing WordPress
In reply to: Incomplete URL’sHandySolo,
I disabled the plugin, ran the test… and the links showed up as they should.
So there is something in WysiwygPro which is doing this. I can get into the code through the plugin editor, but I have no clue what to do (I’m a writer, not a coder!)
Any suggestions? Thanks!
Forum: Fixing WordPress
In reply to: Incomplete URL’sHowdy,
— WordPress 2.04 (2.05 won’t install… corruption)
— WysiwygPro is the plugin editor I use to write posts right within WordPress
— I add the links and images by simply clicking the appropriate buttons in the plugin editor. I always copy and paste the link into the dialogue box. But for some reason, only the links which originate from other sites will be added fully in the page source.Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?Okay vkaryl. I do lose my navigation, but… I’ll live with it.
Thanks for your time, I do appreciate it!
Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?(…because, adding it to the singlepost.php only made that code show up in the Sidebar):
#content {
background: url(images/quentin-bg2.gif) repeat-y right top;
text-align: left;
float: left;
width: 470px;
margin: 0 auto;
padding: 0 15px 15px 15px;
overflow: hidden;
display: inline; /* IE dougle margin fix */Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?Hi,
Okay found that. Now (forgive my ignorance), what do I do with that? How do I apply that to the Sidebar?
Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?Here’s the code:
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”storycontent”>
<?php the_content(‘Read more… »’); ?></div>
<div class=”meta”>Published in:
<?php the_category(‘, ‘,”,’|‘) ?>
<?php edit_post_link(‘Edit’,”,’|‘); ?>
|
on <?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –> |<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</div>
<img src=”<?php echo get_settings(‘siteurl’); ?>/wp-content/themes/quentin/images/printer.gif” width=”102″ height=”27″ class=”pmark” alt=” ” /><!–
<?php trackback_rdf(); ?>
–>
</div><?php endwhile; ?>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”><?php _e(“Sorry, but you are looking for something that isn’t here.”); ?>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?….however, I would like to ask…
I have looked up and down the Index page several times trying to find the code that would produce this vertical line, and I cannot.
What might it look like or contain?
Forum: Fixing WordPress
In reply to: How do I add a simple vertical line?Deleting the single post page did it. Thanks so much!
Forum: Fixing WordPress
In reply to: Add a “Home” link to single column page in QuentinNot that simple???