levani01
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: External Links] this plugin breaks wordpress 2.8.5I have almost the same problem… In my case index works fine but if I enter post with a large comment page isn’t loaded any more. I see only background image of my theme. After disabling the plugin everything works fine.
Forum: Alpha/Beta/RC
In reply to: Error Uploading ImagesI had the same same problem on WordPress 2.7.1, udgraded to 2.8.6 but still the same!
Any ideas?
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Can I change post category as well?OK, thanks for quick response.
Forum: Plugins
In reply to: [Plugin: Easy Relative Date] Gives errors in headerWhat does the error message say? Could you please post it here?
Forum: Plugins
In reply to: [Plugin: Folding Category List (FoCaL)] Focal and Category orderWorks fine, thanks a lot!
Forum: Fixing WordPress
In reply to: How to get registered users’ ip addressI don’t want to track all visitors’ ip address. I just need to get current logged in users ip as a php variable. Is that possible?
Forum: Themes and Templates
In reply to: Alternating Color for Commentshttps://www.instantshift.com/2009/02/08/30-most-wanted-wordpress-comments-page-hacks/
Take a look at the second tutorial.
Forum: Plugins
In reply to: [Plugin: Folding Category List (FoCaL)] Focal and Category orderAny ideas?
Forum: Fixing WordPress
In reply to: Admin footer stops loading after activating some pluginsI changed the memory_limit to 32MB but it didn’t work. Can there be any other reason?
Forum: Fixing WordPress
In reply to: Where is the Quick Edit form located?No, I mean quick edit form for posts.
Forum: Plugins
In reply to: [Plugin: Relevanssi] utf-8 supportUnfortunatelly I’m not so familiar with programming to find out the exact reason. I don’t know whether it’s something too difficult to do or plugin developers don’t pay attention to this, but it’s a common problem to every advanced search plugin.
Forum: Plugins
In reply to: [Plugin: Relevanssi] utf-8 supportYou say that utf8 problems have been fixed but I’m not satisfied with the results at all! I checked the database and and noticed that in many cases it stores only a part of the word or even only a letter from the word. Is it what it’s suppose to do? Very often if I try to search with two words it doesn’t find anything, even in case of exact match!
p.s. I use Georgian unicode.
Forum: Fixing WordPress
In reply to: Query only posts with active commentsI noticed a very strange behavior of $post->comment_status; function. I tried inserting the
echo 'comment status is :' . $post->comment_status;
code and it always displays ‘open’ even if the post is published more than several months ago (Comments become closed automatically after 20 days on my site on every posts).
I also checked the database entries and in wp_posts table, under the comment_status column, all values are ‘open’!!!
But the most strange thing is that in single.php, comparing ‘open’ to $post-> comment_status successfully works and removes the comment form if it doesn’t match…
Can you please explain why does it happen?
Forum: Fixing WordPress
In reply to: Query only posts with active commentsDoes the standard wordpress loop work on custom page template, without query_posts function?
Forum: Fixing WordPress
In reply to: Query only posts with active commentsSorry, but it doesn’t solved the problem. This code doesn’t even query anything!
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if ( 'open' == $posts->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; ?>