ColdForged
Forum Replies Created
-
Forum: Installing WordPress
In reply to: The entire thing has crashed.We’ll need a bit more information to even begin to help you. What kinds of errors are you getting? Can you get to the administration interface? What happens when you got to the index of your blog?
Forum: Themes and Templates
In reply to: Styleheet Problem In IEYou’ll have to define “not working” then. I see it fine in both IE and Firefox.
Forum: Fixing WordPress
In reply to: Category problemNick, what does your template look like? (Pastebin it, please.)
Forum: Themes and Templates
In reply to: Styleheet Problem In IESorry, don’t see any problem. Perhaps it has to do with whatever it is you’re using to “fade in” the site under IE.
Forum: Fixing WordPress
In reply to: Category problemAlways, always, always post code in a pastebin (like http://pastebin.com). Also, we typically can look at the code in WordPress ourselves without needing it copied here.
Forum: Your WordPress
In reply to: Poker Blog – Opinions?Absolutely. You’ll need either another database (easier to keep track of) or a different table prefix in wp-config.php.
Forum: Fixing WordPress
In reply to: Problems with formattingYou’ve got a _LOAD_ of validation errors on your site. Try fixing that and see where you are afterwards:
Forum: Themes and Templates
In reply to: Sidebar: How Do I Add to It???What are you trying to add? You mentioned an “About Me” section. Given the code above, you’d do something like the following:
<li id="about">About Me
<ul>
<li>I'm a Pisces, I like chicken and walnuts, and I support new tariffs on lima beans</li>
</ul>
</li><!-- ADMIN CONSOLE -->
<li id="meta"><?php _e('Admin:'); ?>* <?php wp_register(); ?> <?php wp_loginout(); ?>
<!-- YOUR LINKS -->
<?php get_links_list(); ?><!-- POSTS BY CATEGORY -->
<li id="categories"><?php _e('Categories:'); ?><?php wp_list_cats(); ?>
Forum: Your WordPress
In reply to: Poker Blog – Opinions?Is there a better way to test?
If your hosting provider isn’t too restrictive, you might want to run a “sandbox” version of your web site. In other words, a separate, non-public WordPress installation that you can test on.
Forum: Fixing WordPress
In reply to: Remove the display of the post in commentsIf the URL in your forum name is the one to which you refer, it seems you already have that behavior.
Forum: Fixing WordPress
In reply to: Retrieve link to specific category?Forum: Plugins
In reply to: display category links within a page?Sounds like you went through a lot of work for that :(. It’s likely there’s a variable that’s set you could have used. Try creating one
category.phptemplate. In place of what you have, try the following:`<?php
wp_list_cats(“sort_column=name&hide_empty=0&child_of=$cat”); ?>Note the double-quotes in place of the single-quotes, by the way. See if it works as expected.
Forum: Fixing WordPress
In reply to: Retrieve link to specific category?Try the following:
<a href="<?php echo get_category_link( $daily_photo_cat_id );?>"><?php echo get_the_category_by_ID( $daily_photo_cat_id );?></a>Where
$daily_photo_cat_idis the ID of your Daily Photos category.Or, much more simply, use the coffee2code plugin.
Forum: Plugins
In reply to: Post editing plugins WYSIWYG, Wysi-WordPress,TinyMCE, Image Browsers ?None of them work particularly well together given their nature — WYSIWYG typically replaces the JS quicktags, image browsers try to add to the quicktags, etc. I have no recommendations for you as I don’t use HTML in my posts, but just wanted to say there may in fact be no “secret” to it either.
Forum: Fixing WordPress
In reply to: Need some eaglr eyes: commenst form partly showingValidation might help point the way.
EDIT: Odd. Works now. Been diddling?