mr_director
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Removing page title on the pagecontent-page.php
Forum: Fixing WordPress
In reply to: Removing page title on the pageFigured it out thanks to alchymyth’s last comment. Thank you!
Used this:
<header class="entry-header"> <?php if ( is_front_page() ) { ?> <h2 class="entry-title">Welcome to your new home.</h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?> </header>Forum: Fixing WordPress
In reply to: Removing page title on the pageThis is what I used on the main page template:
<?php if ( is_front_page() ) { ?> <h2 class="entry-title">Test</h2> <?php } elseif ( is_page_template('customPage.php') ) { ?> <p>Do Stuff, ignore header on customPage.php</p> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?>However, that doesn’t remove the old title. So now I have two titles on there.
Forum: Fixing WordPress
In reply to: Removing page title on the pageThere is no title information in the Twenty Eleven theme. Unfortunately, I’m not as advanced with WordPress to know how to do conditional phrases.
I’d do the CSS, but I only want the front page title to be hidden, not all the page titles.
I’ve searched for information on Twenty Eleven in the forums, but can’t find it.
Forum: Fixing WordPress
In reply to: Removing page title on the pageI’m just trying to do this on the default Twenty Eleven theme. I want just may main page to have no title showing up right above the page text.
Forum: Fixing WordPress
In reply to: Removing page title on the pageI’d like to know how to do this as well. Does anyone know? The only information I can find is for older versions of WordPress. Those fixes no longer apply.
Forum: Fixing WordPress
In reply to: Clean install results in no formattingMy hosting provider (GoDaddy) actually has an automated WordPress setup. I just used that instead of dealing with all this permission stuff. Though it would still be nice if someone could tell me how I could have fixed it. Thanks!
Forum: Fixing WordPress
In reply to: Clean install results in no formattingI am running a Linux server. Which folders do I need to change and what do I need to change them to? I tried changing the index like the link says, but no luck.
Here’s the code that I enter:
<blockquote>Jesse: So, there’s this griddle thing! IT’S AWESOME. It makes pancakes too. It doesn’t cost as much as a car. Friend #2: Sounds dumb. Jesse: You’re dumb. This friendship’s over.</blockquote>Here’s what WordPress does to it:
<blockquote><p>Jesse: So, there’s this griddle thing! IT’S AWESOME. It makes pancakes too. It doesn’t cost as much as a car.</p> <p>Friend #2: Sounds dumb.</p> <p>Jesse: You’re dumb. This friendship’s over.</p></blockquote>By doing this, it renders the font size and style of my CSS blockquote useless. Anyone have an idea?
Forum: Themes and Templates
In reply to: unexpected T_STRING error when trying to create archives loopUnfortunately, that didn’t help. I ended up going with a different code. I’m having another problem, but it’s CSS related, so I won’t post it here.
Thanks so much for trying. Anyone interested I ended up using this code and it works great: http://wpguy.com/articles/an-archives-page-with-all-the-posts-in-cronological-order/comment-page-1/#comment-530
Forum: Themes and Templates
In reply to: unexpected T_STRING error when trying to create archives loopWhen you say “your other stuff” where would that stop? AKA, where would I put the closing bracket?
After <? php endforeach; ?> or before? Somewhere else?
Forum: Themes and Templates
In reply to: unexpected T_STRING error when trying to create archives loopIf it helps anyone, the error says that it’s on line 38. This is line 38:
<?php the_time('M j') ?> : <a href="<?php the_permalink(); ?>"><? php the_title(); ?></a>Forum: Themes and Templates
In reply to: unexpected T_STRING error when trying to create archives loopThat line didn’t fix the problem.
Should I change it back or keep it to what you suggested?
Forum: Themes and Templates
In reply to: Admin Comments: Different CSSIs there any update to how to do this in the new WordPress? I don’t have a comment loop section in my theme I don’t think…