bamosherjr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: First Paragraph First Letter Drop-capHey guys, I have not had any responses in over a day. I really was hoping that someone could help me out please. Please anything will help. Thank you.
Forum: Themes and Templates
In reply to: First Paragraph First Letter Drop-capThis works great, but I already knew how to do this. I need to know how to write some like PHP or something to tell it that if its the first letter of the first paragraph only to imply the drop cap. And if it is not to than just write it out normal. So, I guess what I am asking for is a PHP script that would tell the server if it was the first paragraph and if it was to put the span thing there.
Any help is appreciated.
Forum: Fixing WordPress
In reply to: No Title on Static Home PageDid some research and got it on my own. The reason the is_home function does not work is beacuase it was depricated in wordpress v2.0. Instead you have to use this:
<?php if (!(is_page('20'))): ?> <div class="article_title"><?php the_title(); ?></div> <?php endif; ?>
It looks great and works! I am closing this thread now!
Forum: Fixing WordPress
In reply to: No Title on Static Home PageI have added:
<?php if (!is_home()): ?> <div class="article_title"><?php the_title(); ?></div> <?php endif; ?>
To my page file. But I am still not getting the display that I want. Is this not the right code? and if not what exactly do I need to put?
Forum: Fixing WordPress
In reply to: No Title on Static Home PageOkay, I am back, but am still not getting the right display. https://www.hilltopbc.com
Is there anymore ideas?
Forum: Fixing WordPress
In reply to: No Title on Static Home PageI have to run out and pick up my moving truck. Hope to be back in about an hour. Please do not leave my hanging. You can IM me on AIM at bamjrdesigns. I will be back shortly. Thank you.
Forum: Fixing WordPress
In reply to: No Title on Static Home PageI now have a page.php, but the title is still showing up. I have figured out how to get rid of the sidebar problem (well when not using a widget sidebar). I need the title to not display on the left hand side.
Forum: Fixing WordPress
In reply to: No Title on Static Home Pageno i don’t should i?
Forum: Fixing WordPress
In reply to: No Title on Static Home Pagethose files are templates that i am using across the page. It is what displays the left side of the page. My index.html for my theme looks like this:
<?php get_header(); ?> <?php include (TEMPLATEPATH . '/leftside.php'); ?> <?php include (TEMPLATEPATH . '/rightside.php'); ?> <?php get_footer(); ?>
They are just a theme file.
Forum: Fixing WordPress
In reply to: No Title on Static Home PageI am using wordpress 2.2. I have copy pasted the code you gave me above and have put it in both leftside.php, and leftside_page.php. I am still getting the title.
Forum: Fixing WordPress
In reply to: No Title on Static Home Page<?php if (!is_page(home)): ?>
<div class=”article_title”><?php the_title(); ?></div>
<?php endif; ?>This is in place, and still comes up with the title. I am new at PHP and am not sure how all this works.
Forum: Fixing WordPress
In reply to: No Title on Static Home Page<?php if (!is_page(home)); ?>
<div class=”article_title”><?php the_title(); ?></div>
<?php endif; ?>Still not working.
Forum: Fixing WordPress
In reply to: No Title on Static Home Page<?php if (!is_page(home)) ?>
<div class=”article_title”><?php the_title(); ?></div>
<?php endif; ?>This is what I have in place.
Forum: Fixing WordPress
In reply to: No Title on Static Home PageI put that into place, and it like killed my whole theme. I am not sure why? Is there a way we can IM somehow, I need to get this done for the client and soon. Please let me know.