sithicus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Migrated Site Can't post?So far no luck. I have confirmed that I can for sure edit an existing post but still unable to create a new one.
When i’m looking at my overall post list, is do see something strange.
All (900), Published (899) I can’t find the one that isn’t published maybe this is causing the issue?
Forum: Fixing WordPress
In reply to: Migrated Site Can't post?Ok tried that.
No luck. I did it as you suggested and deleted everything and reuploaded.
I have actually done this twice just to be safe.
This blog is very old, it has been around for a long time probably through pre version 1 wordpress. Is it possible there is some garbage in the database that is now causing an issue.
Forum: Fixing WordPress
In reply to: Migrated Site Can't post?Good suggestion but it didn’t make a difference.
Forum: Fixing WordPress
In reply to: Comments Missing All Formatting?This problem is caused by the More Smiles Plugin.
Forum: Fixing WordPress
In reply to: Comments Missing All Formatting?Is there a way that I could have disabled the formatting on comments…?
Forum: Plugins
In reply to: Random Always on Top Post..No thoughts on this?
Forum: Fixing WordPress
In reply to: Help! Problem during Server Movegood call.. ??
Forum: Fixing WordPress
In reply to: Child_of Children False?I think the right way to do this is using cat_lists
Forum: Fixing WordPress
In reply to: Display only subcategories of one categoryIt’s in the WP wiki – you can display the subcategories using:
wp_list_cats(‘child_of=#’)
where #=main category # (not child category #)
This will display only the children of the specified category, but not the main category itself.In response to this:
Is there a way to auto detect what category it is in so we don’t need to create x number of category pages? X being the number of categories?
Forum: Fixing WordPress
In reply to: Comment Form Not Working in IE 6Basically this code won’t let me click on the first comment box in IE6
Forum: Fixing WordPress
In reply to: How to store the_author in a variable..so if I wanted to return “the_author” inside of a tag..
<div class=”<?php the_author(); ?>”> ?
Forum: Your WordPress
In reply to: New theme: KiwiDoes it have issues in IE.. ?
Forum: Installing WordPress
In reply to: WP and MediaTempleI get this error..
Warning: main(): Unable to access /home/virtual/site454/fst/var/www/html/wp-includes/wp-db.php in /home/virtual/site454/fst/var/www/html/wp-settings.php on line 73
any thoughts?
Forum: Fixing WordPress
In reply to: 301 Redirect .domain.com to www.domain.com .htaccess code?www . domain . com
Forum: Fixing WordPress
In reply to: Category Specific MenuThis is the proper way to do this MADDDDD propts to alphaoide.
<?php
$cat = get_the_category();
$cat = $cat[0];
$posts = get_posts(“category=” . $cat->cat_ID . “&numberposts=5”);
if( $posts ) :
?>
<div class=”recent-posts”>
<h2>More on this category</h2>-
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
- ” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
<?php endforeach; ?>
</div>
<?php endif; ?>