darran
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress changing single quote to ⁽I have tried using the 2011 theme and am still getting those special characters in my feed. No absolute clue why this is happening.
Forum: Fixing WordPress
In reply to: WordPress changing single quote to ⁽I am using the standard ‘ apostrophes as seen in the HTML view.
Forum: Fixing WordPress
In reply to: [Plugin: User Access Manager] broken image linkI have this problem and I stumbled upon a fix.
To solve it, under File Settings, check on No to lock files. That fixed it for me.
Forum: Fixing WordPress
In reply to: Version 2.8.1 not showing Rich Text EditorTake a look here and you should find your solution in there
Forum: Fixing WordPress
In reply to: WordPress 2.8: Visual editor (articles and pages) is goneI was just about to pull my hair out until I found out that Google Gears was causing the problem. The reinstall did not fix anything, it was the disabling of Google Gears which did. I hope this helps everyone. And if this information is important, I am using a Mac with Safari.
Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.To wrap a post in a particular ID, just insert a div underneath
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
something along the lines of
<div id="post-<?php the_ID(); ?>">
remember to close it with a closing div tag
Just before the while loop ends, insert this:
</div>
Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.Now that’s out of the way, I hope you understood what went wrong.
This was what you gave in the code.
<?php the_content(‘more_link_text’, strip_teaser, ‘more_file’); ?>Read the documentation carefully and the descriptions of the parameters.
You shouldn’t be entering those values as your parameters.
Though the 1st and 3rd one will pass because they are Strings. The 2nd one wouldn’t because for boolean types, you can only give a true or false.Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.I have a gut feeling that it could have been the implementation of your <?php the_content() ?> tag, try using this and see if the problem persists.
<?php the_content("More..."); ?>
Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.The code seems fine, but it looks like you are possibly missing the closing of a
<div>
, you have 2 divs (id#main and class.post), but you are only closing one. I can’t see your footer code, so I am not sure whether you closed it there.Do have a go and let me know how it goes.
Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.The classic theme does not make use of the single.php, in that case look up your index.php file. Mind pasting its contents, so I can find out what’s wrong?
Essentially this is what is needed to display your post content:
<?php the_content(__('(more...)')); ?>
Since you have already started working on the classic theme and identified it as the base you want to start working with, you should just stick to it, no need to make the switch.
Forum: Fixing WordPress
In reply to: html errorYou were missing a
<ol>
or<ul>
, just nest your<li>
within them and it will validate.I have never taken too much effort to understand WordPress because it is that simple. You just have to be patient with it and take one step at a time. If you want, I could help you out with some clarification over the things you have trouble with.
Forum: Fixing WordPress
In reply to: About ready to give up, posts not showing.A post on its own should be using the single.php file. Your comments.php just goes into the single.php. And from what I could make out from your source, there isn’t any post body.
I would imagine that you are missing the
<?php the_content() ?>
tag. But I can’t be sure unless I know what is in your single.php.Forum: Fixing WordPress
In reply to: HTML coding for sidebarDo take a look at this article on faux columns.
https://www.alistapart.com/articles/fauxcolumns/
I am really looking forward to seeing your posts on your holidays, especially Singapore since I am from there. It is always nice to hear what tourists have to say about our country.
Forum: Themes and Templates
In reply to: Stumped by CSSYou gotta clear your floats, your sidebar is floated to the right, and at the end of it, you did not clear it. I am not sure, but this could be the problem.