sarekofvulcan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgraded blog – blog go bye-bye.Ah. Missed that. Sorry.
Forum: Fixing WordPress
In reply to: Upgraded blog – blog go bye-bye.They tried upping the memory to 32, with no luck. If I downgrade to the current release version, will the database get completely screwed?
Forum: Themes and Templates
In reply to: Changing Blog Title LinkIt’s the little mistakes that are the hardest to find. ??
Forum: Themes and Templates
In reply to: Changing Blog Title LinkAre you sure? Because if you use
<a href="www.xxxx.com">xxxx.com</a>
, you should gethttps://news.xxxx.com/www.xxxx.com
, as you reported, but using<a href="https://www.xxxx.com">xxxx.com</a>
should give you what you want.Forum: Themes and Templates
In reply to: Shrunk font size, messed up formattingI just restored the original formatting: later on, I’ll track down what was messing it up. Thanks anyway!
Forum: Themes and Templates
In reply to: Changing Blog Title LinkWould using
<a href="https://www.xxxx.com">
do what you want?Forum: Themes and Templates
In reply to: Title tags are showing the post date, not the post title. Why?What’s the code that’s showing “January 29, 2007 ? Soundbyte” just above the comic?
Forum: Themes and Templates
In reply to: Register and Logout CodeThis what you had in mind?
<?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p> <?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> <?php if ( $user_ID ) : ?> <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout »</a></p> <?php else : ?> <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> <label for="author"><small>Name <?php if ($req) _e('(required)'); ?></small></label></p> <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> <label for="email"><small>Mail (will not be published) <?php if ($req) _e('(required)'); ?></small></label></p> <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> <label for="url"><small>Website</small></label></p> <?php endif; ?>
Forum: Themes and Templates
In reply to: Sorting blogrolls by multiple categoriesThanks, samboll — I’ll check that as soon as the Codex is in a better mood.