ferrie=differentieel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why does ‘hierarchical’ not work in Get_Pages?iridiax the child_of has to be there to produce the subpage from the parent. but the then the parent page refuses to block the children.
could this be a conflict?
i have tried all combinations already, all sub pages are there.Forum: Fixing WordPress
In reply to: Why does ‘hierarchical’ not work in Get_Pages?thnx iridax for your fast response
the code i use comes from that pages.
the hierarchical is almost at the bottom of that page.
i’ve tried all combinations now, no result.Forum: Plugins
In reply to: Conditional author include on single.phpto be shure that my storie here is true i tested this code:
<?php if (is_single() && is_author('1')) { include (TEMPLATEPATH . '/single-author1.php'); } elseif (is_single() && is_author('2')) { include (TEMPLATEPATH . '/single-author2.php'); } else { printf(__('Sorry, this is not working.')); } ?>
first in the index.php. that did not respond into a result i had in mind: author_1 had to show in the left column, author_2 in the right column. the ordenairy single.php shows up at the center.
then i tried one level higher and put this code into the header.php nothing at all.
question: why do we have a Conditional Tags page in the codex?
or is there someone who discovered the magick of the is_author trick?Forum: Plugins
In reply to: Conditional author include on single.phpi wondered why this is not working?
is the is_author filter perhaps disabled?Forum: Fixing WordPress
In reply to: WordPress and Applei would suggest the same place to get a start. designing on your own machine is working faster and more secure. if your work is tested you can go public. good luck.
Forum: Fixing WordPress
In reply to: Parse error in my Dashboarddid you report this already?
for all international wp blogs it migth be possible to change the line above as well. just start looking at line 101 of the index.php in the wp-admin.change both lines to:
$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish'"); if (0 < $numposts) $numposts = number_format($numposts); $numposts = str_replace (",","",$numposts); $numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'"); if (0 < $numcomms) $numcomms = number_format($numcomms); $numcomms = str_replace (",","",$numcomms);
and your dashboard is fine again.
this bug appears when you have more than 1000 entries and comments.
thnx to BDF everything works fine.Forum: Plugins
In reply to: Akismet keeps spamming a regular poster@handysolo: it would be nice if that should work. sorry, but it does n’t. nobody is answering.
Forum: Plugins
In reply to: Akismet hates Rosalindone of my authors is marked as spam at my weblog. i marked the comments as NOT SPAM over a dozen times. sended 3 emails with a request to lift this IP out of the database. no effect.
how can we unspam our dear visitors and authors?