mrspabs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category orderHere is an answer to my own question 🙂
This code will output the categories in the correct order.
<?php echo get_category_parents($cat, FALSE, ‘/’); ?>if you do this, it will do it with links
<?php echo get_category_parents($cat, TRUE, ‘/’); ?>Forum: Fixing WordPress
In reply to: Page Revisions – How Do I accessWow, it was there at the bottom of my page all along. I must have been looking at a page with no previous revisions. I feel so stupid! Ignore this post!
Forum: Fixing WordPress
In reply to: .htaccess help (redirect index.html)I got the error
This webpage has a redirect loop.
The webpage at http://www.—.com/ has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
Forum: Fixing WordPress
In reply to: .htaccess help (redirect index.html)Thanks, I added it, but it did not work. I got file not found
I should clarify, if I got to my site, it loads index.php. I do not need to put in the filename.
However, the old pre-wordpress site was index.html. Old bookmarks and links go to index.html and they get file not found. That is why I want to redirect index.html to index.php
Forum: Fixing WordPress
In reply to: Internet Explore Tab Title/Name change. How?You could always just replace
<title><?php elegant_titles(); ?></title>
with
<title>Whatever you want</title>
or
Try installing a plugin that does SEO. most of them give you a way to control the title tag per page/post
Forum: Plugins
In reply to: [Plugin: Redirection] WP3.0I am having the same issue. I am in the process of rolling back to 2.9 right now. 🙁
Forum: Fixing WordPress
In reply to: Link is opening in new window – and I don’t want it toHax I posted the link in the first line of my post http://www.saldef.org
You are right, when I turn javascript off, the links work correctly (open in the same window).
Any advice on what I should do next?
Forum: Fixing WordPress
In reply to: Edit Comment FormThank you!
Forum: Themes and Templates
In reply to: Comment ProblemAnswering my own question. I guess you are not supposed to directly insert the comments code into single. Instead, I did the below.
<div id="comments"><?php comments_template(); ?></div>
And its works now.Forum: Fixing WordPress
In reply to: Blog page not showing up as blogBrilliant, thank you!
Forum: Fixing WordPress
In reply to: Getting rid of Comments closed at the bottom of Eximus pagesis it just on the single post? My single.php template has code like this
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Both Comments and Pings are open ?> <a href="#respond">Leave a comment</a>. <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Only Pings are Open ?> Responses are currently closed, but you can <a href="<?php trackback_url(true); ?> " rel="trackback">trackback</a> from your own site. <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Comments are open, Pings are not ?> You can skip to the end and leave a response. Pinging is currently not allowed. <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Neither Comments, nor Pings are open ?> Both comments and pings are currently closed.So you can just find the appropriate text and remove it.
Forum: Fixing WordPress
In reply to: Permalinks ProblemAre you on yahoo hosting? This happened to me and its something having to do with how yahoo sets up the server. Maybe its your host?
Forum: Fixing WordPress
In reply to: links returning no results – blank pagesDo you have templates for archive.php and single.php files?
Forum: Fixing WordPress
In reply to: Pages and posts not showing up…Does it work when you turn off your permalinks?