holney
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Internal Server Error when updating a postHi
I can’t help I’m afraid – I know this sounds strange but the problem went away on it’s own. I suspect something might have changed on the hosting after I contacted them but I can’t be sure.
Sorry about that.
Forum: Fixing WordPress
In reply to: Internal Server Error when updating a postThanks for your reply.
Yes we’re using the same account – he has the problem; I don’t
Forum: Fixing WordPress
In reply to: Static front page not workingThanks Samuel
Sorry I should have said – I selected a page for both the front page and the blog.
It still has no effect.
Forum: Fixing WordPress
In reply to: Admin Panel Layout IssueI’m having the same problem too. @bstevens – did you find a fix? Can anyone suggest what the problem is and what I can try to fix it?
Many thanks
Forum: Fixing WordPress
In reply to: Static home page problemsIt’s working now. I didn’t get to the bottom of the problem but I installed this plugin that worked:
http://ilfilosofo.com/blog/home-page-control/Forum: Fixing WordPress
In reply to: Static Home Page not DisplayingI’m having the same problems. I only have two plugins: Akismet & SEO Smart links. Tried deactivating them both but it didn’t fix it. Any other ideas?
Forum: Fixing WordPress
In reply to: Static home page problemsI still can’t find a way to resolve this so if anyone has any suggestions of things I might try, that would be great.
Thanks
Forum: Fixing WordPress
In reply to: Multiple tables don’t display correctly in adminbump
Any ideas?
Forum: Fixing WordPress
In reply to: [Plugin: qTranslate] Small problem with translations in the sidebarSomebody kindly provided this answer on another forum – works perfectly:
<li><a href="<?php echo get_permalink($postid); ?>" title="<?php _e($title); ?>"><?php _e($title);?></a></li>Forum: Fixing WordPress
In reply to: In sidebar list all posts in this post’s categoryMany thanks again moshu. This is fixed now. Here’s my code if anyone else wants to do the same thing:
<h3>Posts</h3> <ul> <?php while(have_posts()) : the_post(); ?> <?php foreach((get_the_category()) as $category) { $my_query = new WP_Query('category_name=' . $category->category_nicename . '&orderby=title&order=asc&showposts=100');} ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> <?php break; endwhile; ?> </ul>Forum: Fixing WordPress
In reply to: In sidebar list all posts in this post’s categoryHi Moshu
I haven’t changed the code from what it was in the original template. I was just wondering whether it was technically possible or whether there was a widget or plugin. I’ll read the information you suggested.
Many thanks
Forum: Fixing WordPress
In reply to: In sidebar list all posts in this post’s categoryThanks Moshu – here it is