miletjs
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Pie Register] custom Logo errorThis is not working for me too
Looks like the developer is still not correcting this bug!
Forum: Fixing WordPress
In reply to: Can I make the top level menu-item NON-CLICKABLE?I am looking for this too. I want that the top page is not clickable. Any plugin for this?
Forum: Fixing WordPress
In reply to: index.php in ugly permalinksIm also experiencing the same issue. We have the wordpress blog installed in a subdirectory of a main directory. I want to get rid of index.php from permalinks
i hope the wordpress developers can help us
another weird observation
i checked all activated plugins and selected the bulk action deactivate them but it didnt deactivate all the plugins, i have to deactivate one by one
EDIT:
I already deactivated ALL plugins but it didnt solve the problem
not yet i can try it now
by the way it only happens when im editing published posts. but ehwn im editing drafts, i didnt encounter that problem
Forum: Developing with WordPress
In reply to: [Plugin: wordTube] play different extension of flvCan anybody help me please?
Forum: Fixing WordPress
In reply to: how to code pagination?Hi Moshu,
Do you mean using query_posts instead of get_posts?
In http://codex.ww.wp.xz.cn/Category_Templates#Modifying_How_Posts_are_Displayed
it does not have any sample if I want to show post titles only instead of excerpts or full postsForum: Requests and Feedback
In reply to: Timezone / post time / scheduled post issuethis still doesnt help
And looks like wordpress has no plans of fixing this!
So despite the new look of version 2.5 and up, because of this bug, I must say that new version of wordpress sucks!
Forum: Requests and Feedback
In reply to: Posting scheduled postsi tried changing my theme but it still doesnt post the posts with “Scheduled” status
And looks like wordpress has no plans of fixing this!
So despite the new look of version 2.5 and up, because of this bug, I must say that new version of wordpress sucks!
Forum: Fixing WordPress
In reply to: can I order comments newest first?Locate a line which looks like the following:
<?php foreach ($comments as $comment) : ?>and wrap around the $comments variable, array_reverse():
<?php foreach (array_reverse($comments) as $comment) : ?>Forum: Fixing WordPress
In reply to: How to list titles in categoriesI have already figured this out
For those folks searching for the same issue, here’s what I did
replace your THE_LOOP section. In a nutshell, I deleted the following from my category.php file
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="post-content"> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> @ <?php the_time('F jS, Y') ?> <?php edit_post_link(', Edit'); ?> </li> </div> <?php endwhile; ?> <div id="nav"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> </div> <?php else : ?> <h2>Not Found</h2> Sorry, but you are looking for something that isn't here. <?php endif; ?>And replaced it with
<?php $categoryvariable=$cat; // assign the variable as current category ?> <ul> <?php $myposts = get_posts('category=' . $categoryvariable. '&numberposts=20&offset=0'); foreach($myposts as $post) : setup_postdata($post); ?> <div class="post-content"> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> @ <?php the_time('m/d/Y g:i A') ?> <?php edit_post_link(' | Edit'); ?> </li> </div> <?php endforeach; ?> </ul> <p> </p> <p> </p> <div id="nav"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> </div>Forum: Installing WordPress
In reply to: Error messages re: “index-extra.php” and “admin-ajax.php”I think the .htaccess file should contain this instead:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>Forum: Requests and Feedback
In reply to: “You don’t have permission to do that” ErrorHa!
I tried http://trac.ww.wp.xz.cn/ticket/3807 and it worked!!
Calling WordPress,
I’m wondering why you still HAVE NOT CORRECTED this bug despite the fact that you have released a new version already?Forum: Requests and Feedback
In reply to: “You don’t have permission to do that” Errorthis is really bizarre
Ive upgraded to the latest version and I am still encountering this problem. Why is that?
Forum: Plugins
In reply to: Customizing the sidebar widgethmmm… any help would be appreciated …