Class
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: some search engines dont index my page…The warning says what it is, many robots will ignore iframes. You only have one as far as I can tell, I wouldn’t worry about it.
Forum: Themes and Templates
In reply to: Another Footer ProblemThe codex has the information you might want ??
Forum: Fixing WordPress
In reply to: Validation ErrorsWhat validator are you using? Probably not what you want to hear but I wouldn’t worry about validating the JS code of your plugins ??
Forum: Themes and Templates
In reply to: Another Footer ProblemThe wrapper div may be closed in another file, like index.php.
Look at the footer.php from the default theme, notice it has two closing divs, one for the footer, one for the wrapper/container.
The second one
<div id="page">
opens in header.php.Forum: Fixing WordPress
In reply to: sending passwordIt’s probably not related but maybe it’s worth checking. Do you have access to the local SMTP (mail) server logs?
Request a new password and examine the logs to see what’s happening.
Forum: Themes and Templates
In reply to: Another Footer ProblemThis is one of the php files, not the CSS.
This is my footer.php:
<div id="footer">blah </div> <!-- end footer --> </div> <!-- end wrapper --> </body> </html>
Notice how the wrapper div is closing before the footer? (My wrapper is opened in the header.)
You need to examine your theme and put the footer div after the wrapper (I think).Forum: Fixing WordPress
In reply to: Categories not displaying in sidebarMaybe some of your themes isn’t WP2.1 compatible?
Compare the sidebar.php files from the themes that doesn’t work correctly with the ones that do.Forum: Fixing WordPress
In reply to: siteAKA spam…. *sigh*
Forum: Themes and Templates
In reply to: Another Footer ProblemYou probably have something like this:
‘<div id=”wrapper”>content…
<div id=”footer”></div> <!– end footer –>
</div> <!– end wrapper –>’You’ll need to swap them, like this:
‘<div id=”wrapper”>content…
</div> <!– end wrapper –>
<div id=”footer”></div> <!– end footer –>’Forum: Installing WordPress
In reply to: Disable Comments on PagesEdit ‘single.php’ (or whatever the name of your templatefile is), delete the comment tags.
Forum: Themes and Templates
In reply to: Another Footer ProblemYour footer div is inside your wrapper, place it outside and it should be ok.
If you’re using Firefox, try the Web Developer addon.
Forum: Fixing WordPress
In reply to: RSS ProblemThis is a plugin you’re using for pulling a feed from somewhere else?
Maybe the “remote” site need to be configured to show the full text or you may have to hack the plugin to do what you want.Forum: Fixing WordPress
In reply to: Bug in the_author_posts_link()?No one using author pages that can check this?
Forum: Fixing WordPress
In reply to: Bug in the_author_posts_link()?No one? *sigh*
Forum: Everything else WordPress
In reply to: MT Guy Needs Help Understanding WP Category TemplatesThe filenames are preset, IE “index.php” has a call to the function get_header() etc.
Start customizing the default theme, insert textcomments in various places and examine the output, you’ll see how it works.
There are several howto’s, like this: https://www.urbangiraffe.com/2005/04/12/themeguide1/