katrinaneufeld
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drag/Drop of Widgets not working in 3.1?CORRECTION: I now believe my theme caused the conflict. I switched to Twenty Ten and all functionality returned.
Forum: Fixing WordPress
In reply to: Drag/Drop of Widgets not working in 3.1?I am having the exact same problem. I have ruled out theme and plugin conflicts. Frustrating.
Forum: Themes and Templates
In reply to: Mystique Theme – Twitter ProblemI noticed that my Twitter widget stopped working after I installed WP Google Analytics by Aaron D. Campbell. I deleted that plugin and installed Google Analytics for WordPress by Joost de Valk instead. The twitter widget works perfectly now.
Forum: Fixing WordPress
In reply to: Comments get assigned to the wrong post.I think I fixed my problem.
I had added some extra code to single.php that should have gone in the loop. Removing this code seemed to have solved the problem. The actual code removed may or may not be relative. It’s meant to create a list of related posts based on tags at the end of the article. I’ve included it below for the sake of curiosity.
<?php //for use in the loop, list 5 post titles related to first tag on current post $tags = wp_get_post_tags($post->ID); if ($tags) { echo '<strong>Related Posts:</strong><ul>'; $first_tag = $tags[0]->term_id; $args=array( 'tag__in' => array($first_tag), 'post__not_in' => array($post->ID), 'showposts'=>5, 'caller_get_posts'=>1 ); $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile; } echo '</ul>'; } ?>
Forum: Fixing WordPress
In reply to: Wrong Comments on Pages / Broken CommentsAnyone ever find a solution to this problem?
Forum: Fixing WordPress
In reply to: Comments get assigned to the wrong post.This is happening on my site, too. I’m running WP Version 2.7.1 and Arthemia Premium 1.0.