Te Calleja
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3W errorsLet’s start off with changing your permalinks. In your wp dashboard, under the settings tab, click on permalinks and change the settings to something other than default (day and name, month and name, or numeric — its up to you). I think that will help reduce the number of errors, and we can take a look at the others afterward.
Forum: Fixing WordPress
In reply to: text and imagesplease check your style.css file if it has this:
.alignleft { float: left; }alternatively, maybe you can click the html tab on your post and insert
style="float:left;"
within your img tagForum: Fixing WordPress
In reply to: Unable to locate WordPress Content directory (wp-content). WP 3.0.1Hi,
Did you manually upload and install wordpress into the domain, or did you use domain.com’s wordpress installer?
I’m running a wordpress site that’s hosted on domain.com, and I remember having problems using their built-in installer. I ended up uploading it manually via FTP, and did not encounter any more problems since.
Forum: Fixing WordPress
In reply to: Comments Not Working!!!!please check if you have the following code
<?php comments_template(); ?>
at the bottom of your post?Forum: Fixing WordPress
In reply to: Still getting Missed Schedule in 3.0.1Same here. I used this plugin to fix it http://ww.wp.xz.cn/extend/plugins/wp-missed-schedule/
I used to have my site password protected via .htaccess and it caused some problems. But when I removed the password protection, I did not encounter any more issues.
Forum: Fixing WordPress
In reply to: 3W errorswhat’s your question? what errors are you getting?
Forum: Fixing WordPress
In reply to: Using subfolder under WordPress Installationdoes your subfolder contain any files, specially an index.php or index.html? maybe that’s causing it to redirect. i tried it on a couple of my sites but didn’t encounter that problem.
sorry i’m not really a programmer, but i’ve built a few sites to kind of work my way around php and stuff.Forum: Fixing WordPress
In reply to: comment on a pageah, wait, need to add a couple more lines. it should be like this:
<?php global $withcomments; $withcomments = true; comments_template(); ?>insert it here (i included a few lines before and after where the code should be so you can find it):
<div class="postmetadata"> <p><a href="#">Continue Reading</a></p> </div> </div> <?php global $withcomments; $withcomments = true; comments_template(); ?> <?php endwhile; ?>Forum: Fixing WordPress
In reply to: comment on a pageif you have a comments.php in your theme, you can call it by putting
<?php comments_template(); ?>after the body of your post. see if that works?
Forum: Fixing WordPress
In reply to: Header/logo shift to the right on certain pagesI’m on a PC and looked at the site with Firefox 3.5 and IE 8, looks fine to me too 🙂
Forum: Fixing WordPress
In reply to: comment on a pagemaybe you have comments turned off? go to the page where you edit your posts, scroll down and see under Discussion. there should be a check mark beside Allow Comments.
Forum: Fixing WordPress
In reply to: Using subfolder under WordPress Installationhave you tried putting a slash ( / ) at the end like this? http://www.mywordpress.site/subdirectory/
Forum: Fixing WordPress
In reply to: A front page like this, Is this possible?when you create a new post, insert the image that you want to use in the main post. click on the html tab then copy everything inside the <img /> tag and paste it on to the excerpts field 🙂
Forum: Fixing WordPress
In reply to: 404 error on wp-admini just checked on my site now and it was magically fixed! i can log in to wp-admin now. i have not done anything new, so i have no idea how it happened.
Forum: Fixing WordPress
In reply to: I am sure someone knows the answer to this, please help!I think the “Edit Post” appears if you are logged in — it will not appear to other users. Try to log out then check the site again if it still shows up.