eston
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Duplicate posts by categoryThis problem persists under 2.1.3 for me as well. I’m going to try upgrading to 2.2 to fix it.
Forum: Themes and Templates
In reply to: New theme: GridlockWell it seems that this theme has absolutely taken off. Go WordPress!
Forum: Everything else WordPress
In reply to: Advanced mod_rewrite permalink preservationNope, that doesn’t seem to work either. I just get a 404 page.
Forum: Fixing WordPress
In reply to: Last Chance Democracy Cafe ProblemKrashkopf, cool down. This is a site for WordPress users, not people attempting to comment on other sites. If you can’t contact them, you’re out of luck.
Have you checked your spam folder?
Forum: Fixing WordPress
In reply to: Different page title to sidebar linkThe title tag of your page is rendered in wordpress with wp_title(); which comes out of the options table in the database.
If you don’t care about making the home page title static, crack open your
header.php
and put this PHP code in between the<title>
tags:<?php if(is_home()) { ?>
Speed Reading Courses in London
<?php } else { wp_title(); } ?>
See wp_title and Conditional Tags for more information.
Forum: Plugins
In reply to: Portfolio PluginIf you’re a web designer, build your own. ??
I’m currently building a plugin that should do a majority of the things that you’ve listed, but it won’t be done for a while.
Forum: Fixing WordPress
In reply to: Admin / Moderator Email Change Bug?Delete the WordPress cache under
wp-content/cache
.Forum: Fixing WordPress
In reply to: “Photo inside” sign next to topic.Michal,
Your best bet is to scan the internal
$post->post_content
for the<img
substring, and then display an image based on that. I’m assuming that you know a bit about php.<?php
if(stristr($post->post_content, '<img')) { ?><!-- Photo Inside Code -->
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/camera-icon.gif" alt="Photo Inside" title="Photo Inside" /><?php } ?>
Your problem isn’t that
the_content()
tag returns an excerpt; it’s thatthe_content()
echoes the post content data to the screen as opposed to keeping it within system-level PHP for processing with a function likestrstr
orstristr
.Forum: Fixing WordPress
In reply to: Is my blog secure?I think your best bet would be to filter the IPs on the server end so the DNS entry for the subdomain was only accessible from the internal network.
Forum: Installing WordPress
In reply to: htaccess filepizdin_dim, adding the ErrorDocument directive to .htaccess would direct a 404 to the index.php page, which he’s already having wordpress do.
ezkimox, where do you want the pages to go? If you want the pages to go to a 404 error page, your best bet is to make your own and place the template you made under your active theme in
wp-content/themes/
called404.php
. The WordPress codex explains more about how WordPress handles missing template files in Template Hierarchy.Forum: Fixing WordPress
In reply to: Comments not working at all – both post and viewOkay, I resolved the comments form part, but
$comments
is still an empty array.Forum: Fixing WordPress
In reply to: Comments don’t work; blank pageI’m having a similar problem with
wp-comments-post.php
– it’s just not working properly and gives me a blank page.Forum: Themes and Templates
In reply to: Sharp Cut Red Clean Theme (more a site than a blog)In all honesty, even though it’s a lot of work, I would. You’re walking a really fine line between ripoff and derivative work if they haven’t said anything.
Forum: Everything else WordPress
In reply to: help in wordpress theme!!Are you using Theme Switcher? If so, clear your cookies.
Forum: Themes and Templates
In reply to: new theme needs some modifyingYes, replace
#
with your URL and make sure you save the page. Then refresh. This will work.