Len
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Page-Specific Templates@ Zoomrix – how did you implement it?
There are a few different approaches you could take the easiest being a conditional in header.php
Let’s assume the page you want styled differently has the numerical ID of 123. Create a new style sheet for that page – for the sake of simplicity call it pg-123.css – and upload it to your theme’s folder.
Next, open header.php and look for the call to your theme’s style sheet. It will look something like …
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />… and wrap a few lines of code around it so it looks like this,
<?php if ( is_page('123') ) { ?> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/pg-123.css" type="text/css" media="screen" /> <?php } else { ?> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php } ?>What this says is if we are on the page with the numerical ID of 123 use pg-123.css and if not use the regular style sheet. If you want to do this for more than one page you will need to use
elseifstatements as well.Forum: Fixing WordPress
In reply to: CommentsYou’ve lost me. Comments don’t appear on your pages AT ALL or only when you add something to the pages? (meaning they mysteriously disappear)
Forum: Themes and Templates
In reply to: Layout – Homepage/Page changeI’m looking at whatever template file is used to display this URL,
wjarrie.com/reviewsoccer
It would be either index.php or home.php (if you have a home.php)
Forum: Themes and Templates
In reply to: Layout – Homepage/Page changeYeah I see the problem. Looking at your source a couple of things jump out. For starters, at the start of your posts I see this …
<div class="entry"> </div>Then your post starts. You’re closing the content DIV prematurely. I also see a crap load of unclosed DIVs throughout your source code.
Forum: Fixing WordPress
In reply to: CommentsMake sure the comment template is being called –>
<?php comments_template(); ?>Look at the difference between your theme’s single.php and page.php
Forum: Themes and Templates
In reply to: Layout – Homepage/Page changeTry calling your header image with an absolute URL rather than a relative one.
Forum: Themes and Templates
In reply to: Source codeheader.php
Forum: Requests and Feedback
In reply to: Offer Downloadable Version of CodexIt’s not what you’re looking for but once you login to the Codex it offers a printable version.
Forum: Everything else WordPress
In reply to: hosting wp – customizing theme designDo i need hiring a server to hosting it necessarily?
If you don’t have your own server where else are you going to host it? With respect to customizing it yes you customize it all you want.
BTW, I checked out the theme you linked to. STAY AWAY from it. It contains obfuscated code in footer.php
Forum: Plugins
In reply to: [Plugin: Post Thumb Revisited] DO NOT USE THIS PLUGIN!!!!!!!!!!!!!I have no idea if the plugin is hacked as I haven’t looked at it. If it is downloaded from WordPress then I assume it is good to go. However the author’s site remains hacked so the point I was making is don’t download anything from there.
Forum: Plugins
In reply to: [Plugin: Post Thumb Revisited] DO NOT USE THIS PLUGIN!!!!!!!!!!!!!The author’s web site is still hacked. It is also running WP 2.5 (no wonder it is hacked)
I haven’t looked at the plugin but I certainly wouldn’t download anything from that site right now.
Forum: Fixing WordPress
In reply to: Is security an issue for WordPress 2.6.2?You may want to upgrade ASAP. Too many people don’t take this seriously enough. I’ve been monitoring my logs out of curiosity for some time and there have been attempted attacks against my site from hundreds of domains.
Forum: Fixing WordPress
In reply to: Is security an issue for WordPress 2.6.2?is 2.6.2 still safe
Might want to read this.
will it continue to be supported for security issues?
Short answer – no. The only version of WordPress that is supported, aside from the current 2.7, is the Legacy 2.0 Branch of which 2.0.11 is the latest.
Forum: Fixing WordPress
In reply to: Can some one help me real quick?I haven’t used IE6 in ages but I used Browsershots to take a look at your site. This is what IE6 sees according to them…
http://browsershots.org/screenshots/b22525a66b25591e6efe2900db00eacb/
Forum: Fixing WordPress
In reply to: Posts on homepage coming up bold after 3rd oneLooking at the source code of that entry on the front page I see an unclosed
<strong>tag.