Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I know if I’m displaying a page?If you still have the “default” Kubrick theme in your themes folder, go in and make a copy of “links.php” and use that to display your links page. You do this by specifying that you want to use “links.php” as the template for the page your creating (one of the the sidebar sections on the write page). This is the same for all the rest of the pages except they should use a file called page “page.php”. Both of these files need to have the loop in them to work. Your site is currently using “index.php” (that’s why they all look the same) to display the pages. Here’s an article about template hierarchy:
http://codex.wordpress.org/Template_Hierarchy
Good place to start.
Forum: Fixing WordPress
In reply to: author won’t show?It has been commented out:
<!– by Angel –>remove the <!– and –> parts to make it show.
Forum: Installing WordPress
In reply to: How do I…If that works than you need to copy and page the main
index.phpfile located on wp’s root folder (not the theme folder) into your domain’s root. Then you alter this part to do direct it to the right place:Before:
<?php<br />
/* Short and sweet */<br />
define('WP_USE_THEMES', true);<br />
require('/wp-blog-header.php');<br />
?>After:
`<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
require(‘wordpress/wp-blog-header.php’);
?>Forum: Installing WordPress
In reply to: How do I…what is the name of the folder you installed WP in? Have you tried going to your site and adding the folder name to the path?
Ex:
http://yoursite.com/worpressForum: Themes and Templates
In reply to: Style SheetGot a link to troubleshoot with?
Forum: Fixing WordPress
In reply to: Getting Blog onto another site without RSSA nice and sleezy way to to do it (so I’m told) is to simply use an
iframe. That’s how I have managed similar problems in the past.Forum: Themes and Templates
In reply to: My postings get cut off on the index pageFor the snippet question you can replace
the_contentwiththe_excerpt. As far as the fixed height issue, you’ll have to simply alter your theme some more. Here’s a great article that explains how to have your sidebar extent to the footer (or vice versa) without stuffing it with a bunch of content to simply push it down (or using a fixed height).
http://alistapart.com/articles/holygrailForum: Fixing WordPress
In reply to: How do I know if I’m displaying a page?What I’m understanding is that you would like a list of your pages to show up on your static front page (index.php [in your theme’s folder] minus the loop?). If this is the case, you do not need the loop for this. What you do need is
wp_list_pages(or one of the other functions for this) somewhere in the page. Just removing the loop from index.php should not affect this. It seems as if you are making a complex custimization that might be missing a few other things that WP needs.Forum: Fixing WordPress
In reply to: How do I know if I’m displaying a page?index.php displays posts. page.php displays pages. Could you elaborate some more?
Forum: Fixing WordPress
In reply to: Titles & Blogs Are All Of A Sudden Centered.Moshu is right. It doesn’t validate. http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.sthbodyjewelry.com%2Fblog%2F
It’s that crazy blinking gif you have after almost every post. Each one starts out with
<p><center /><center>Need to get rid of that first
<center />tag.Forum: Fixing WordPress
In reply to: Titles & Blogs Are All Of A Sudden Centered.The only css rule I could find that could be causing this (just a quick scan) is this one:
.credit {
background: #90a090;
border-top: double 3px #aba;
color: #fff;
font-size: 11px;
margin: 10px 0 0 0;
padding: 3px;
text-align: center;
}Forum: Fixing WordPress
In reply to: Titles & Blogs Are All Of A Sudden Centered.They all looked left justified in Firefox on a Mac.
Forum: Fixing WordPress
In reply to: Date Formating (posted x days ago)I’ve searched WP as well as php.net but I can’t seem to find anything.
Forum: Fixing WordPress
In reply to: Linked PagesWell, I though this was resolved but I’ve followed all the directions to no avail. I’ve added <!–nextpage–> multiple times and I’ve made sure the
link_pagesscript is in there where it should be (single.php, in the loop). I’ve even tested out on Kubrick and still no luck. Any ideas what I’m doing wrong?Forum: Fixing WordPress
In reply to: Linked PagesThanks for the help moshu!