dhkeller
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Two Different “Search” TemplatesSean at Headzoo provided a great solution, involving a second query variable and a php filter. Thanks, Sean!
Forum: Fixing WordPress
In reply to: Two Different “Search” TemplatesI’ll check. Although I suspect the solution lies outside of aLinks … I’m just currently using it to produce the internal searches. … and I should probably share the simple hack that I used to create my “module” ….
Forum: Installing WordPress
In reply to: More than one blogWhen you upload the “wp-config.php” file into the second installation, change the “$table_prefix” (default is “wp_”) to something else. Everything else stays the same.
The database tables associated with your original install will all start with “wp_” …. the tables for your wife’s blog (the new install) will need a new prefix. Anything you want, really….
Forum: Fixing WordPress
In reply to: Flickr wont recognise xmlrpc filecheck your caps/CAPS in the names of the files called by the xmlrpc file. “class-IXR.php” in your wp-includes folder needs to match case with the call inside xmlrpc. I fixed that, and it finally worked for me.
Forum: Fixing WordPress
In reply to: API endpointcheck your caps/CAPS in the names of the files called by the xmlrpc file. “class-IXR.php” in your wp-includes folder needs to match case with the call inside xmlrpc. I fixed that, and it finally worked for me.
Forum: Themes and Templates
In reply to: searching for a sports theme (soccer)I did what ‘eragle’ suggests when I created a blog for our local soccer league. The blog is at http://www.wgpalsoccer.com.
The original theme was Benevolence:
http://www.thoughtmechanics.com/blog/2005/01/03/benevolence/
I altered the banner a bit, and changed some colors. It was easy! WordPress is great!
Forum: Fixing WordPress
In reply to: Parent and child pagesI need this, too. Is there a solution?
Forum: Fixing WordPress
In reply to: One Category’s Posts only (NOT subcategory posts)bump …. any ideas?
Forum: Fixing WordPress
In reply to: Blogging via Emailany answers to the =20 problem?
Forum: Fixing WordPress
In reply to: wp-mail.php issueDid you ever get a solution? I have two websites at the same host, but they are using different servers. One has no problem with wp-mail.php updating and deleting new email. The other only takes one email at a time and doesn’t delete. All my host can tellme is that the servers are configured differently. Any idea how to hack wp-mail?
Forum: Requests and Feedback
In reply to: Password from a lineWould be nice for sharing personal contact info (email/phone) with only part of the world? Any ideas? Maybe something with a custom key? Anyone?
Forum: Fixing WordPress
In reply to: I don’t want Children to show-upNo reply from anyone, but researching today produced another workable clue:
http://codex.wordpress.org/The_Loop
which led to …
http://codex.wordpress.org/Template_Tags/in_category
The in_category function can be used by designating the “$cat” variable as the passed value, with the entire “post” div placed inside the if loop:
<?php if ((in_category($cat))): ?>
<div class="post"> ... </div>
<?php endif; ?>
Seems to work ….. Did I break it? …. or is this an obvious solution I should have found sooner?
Forum: Fixing WordPress
In reply to: Changing “Protected” to another phrase in Post Titlegreat! Thanks!