firehouse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What do you do when you can’t save your changes?here’s a workaround until someone can come up with the correct answer.
You can always go into your header template and delete the call for the tagline…
Forum: Fixing WordPress
In reply to: Can’t Delete a CategoryIf you can add clay work back it may show your pottery under it again. If by chance it does, then you can edit your categories and remove pottery from the parent clay work and set it to no parent.
if you cant add clay work back, then you may want to use phpmyadmin and edit your database manually to remove the parent category assignment so it will show up again in your admin panel
Don’t ask how to use phpmyadmin from me as I don’t know much about it and wouldn’t want you to mess something up royally.
Forum: Fixing WordPress
In reply to: Can’t Delete a Categoryhave you tried to add clay work back?
Forum: Fixing WordPress
In reply to: Conditional Images – Need PHP helpoh, and I’m using the strictly WordPress way.
Forum: Fixing WordPress
In reply to: Conditional Images – Need PHP helpok, tried it, and it works splendidly!
Can I bother you for one more favor, lets say I want to add more if to it. such as. If is home, use this image, if is page 4 use this image, if is page 7 use this image, if is anything else, use this default image… in other words, to add more ifs to it. What do I need to add to do that part?
You’re a help! Thanks!
Forum: Fixing WordPress
In reply to: Conditional Images – Need PHP helpI’ll give it a spin see what I come up with. Thanks for the reply. In the morning I’ll post my outcome! Thanks for helping, nice, clear instructions!!
Forum: Fixing WordPress
In reply to: If home page display specific title in h1 tagshacked away for a while loner, came up with this, right or wrong it seems to work while using a static page as my homepage. So maybe someone will find this useful.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><?php if (is_frontpage())echo"My Special title here"; else the_title(); ?></h1> <?php the_content(); ?> <?php endwhile; endif; ?>
Forum: Fixing WordPress
In reply to: Page contents on home.phpYou are so right and wow what an easy fix!! Thanks so much for a quick response!