levani01
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query only posts with active commentsI can’t make it work…
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if ( 'open' == $post->comment_status ) { ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="satauri"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div><p class="post-footer align-left"><?php the_category(', ') ?> | Author: <?php the_author() ?></p> <div style="clear:both"></div> </div> <?php } endwhile; ?> <?php else : ?> <h1>No results.</h1> <?php endif; ?>
I don’t know why but it displays only one newest page, not what I said above…
I forgot to say, I’m trying to run this code on a custom page template. Can this cause any problems?
Any help would be appreciated!
Forum: Fixing WordPress
In reply to: Admin footer isn’t loaded. HELPYes, I’ve found the reason, it happens because of MM Forms plugin. Once I deactivated it the footer loads correctly.
Forum: Fixing WordPress
In reply to: Different permalink for categories and posts??????
Forum: Fixing WordPress
In reply to: Different permalink for categories and postsAnyone please help!
Forum: Fixing WordPress
In reply to: Display thanks message after a comment is publishedSorry, I forgot to say, I want display this message only for the first page load.
Forum: Fixing WordPress
In reply to: Display thanks message after a comment is publishedThere is practically no information about this function ?? How should I use it?
Forum: Fixing WordPress
In reply to: Exclude comment from listNo the status should stay the same but the comments shouldn’t be visible in comment comment list.
I have a comments rating system on my site and would like to show one most popular comment right bellow the post and than other ordinary comments. But I don’t know how to exclude the comment from the list.
Can anyone help?
Forum: Fixing WordPress
In reply to: Change posts permalink but redirect from old permalink to new oneHave you tested this plugin with wordpress 2.8.4? As I see it hasn’t updated since 2007-6-17.
@design_dolphin
I use Apache.
Forum: Plugins
In reply to: Uninstall relevanssiThanks
Forum: Fixing WordPress
In reply to: Don’t change post author when I edit post title????????????????
Forum: Fixing WordPress
In reply to: want to add one more field in comment areaDoes anyone know how can I make this plugin works with wordpress 2.8?
Forum: Fixing WordPress
In reply to: Don’t change post author when I edit post title????????????????
Forum: Fixing WordPress
In reply to: Latest user idThanks. I want to echo the ID on my site. Your plugin works fine. just changed the user_nicename to ID… ??
Forum: Plugins
In reply to: Next page navigation doesn’t work?????
Forum: Fixing WordPress
In reply to: Query posts by certain IDsI have also found that code but it really needs some fixing. One of the big problem is pagination that I can’t make working despite several hours trying. Any ideas?