cheri3714
Forum Replies Created
-
Forum: Reviews
In reply to: [Futurio] Horrible cheap jacketI applied this was not a review on the theme. Disregard
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] PHP Version Below Minimum Requiredmine says the same thing but then adds a link to download another version of back-up I tried downloading it and got the same page.
I really like this plugin not sure why its not working this time.
Forum: Themes and Templates
In reply to: have header only show on home pagethe error is actually referring to the calling up of the first image.
In my original statement:
if( is_home() || is_front_page() ):
?>
<img src=”<?php bloginfo(‘template_directory’);?>/images/header.gif” alt=”D Ivan Rodriguez” width=”960px” height=”320px” id=”logo” />;
<?php endif;
?>There are no issues. I didn’t change the way it is called up. I’m just attempting to call a different header on the other page???? confused…
Forum: Themes and Templates
In reply to: have header only show on home pageI ultimtely want the headers to look on perspective pages like this:
http://www.c4-design.com/rodriguez/Forum: Themes and Templates
In reply to: have header only show on home pageesmi-
thank you for the reply. I go tthe if statement working fine like this:
if( is_home() || is_front_page() ):
?>
<img src=”<?php bloginfo(‘template_directory’);?>/images/header.gif” alt=”D Ivan Rodriguez” width=”960px” height=”320px” id=”logo” />;
<?php endif;
?>
The only issue isI seem to have to refresh each page every time in order to get the rest of the pages to display right. So to build it on it I would rather a different header on the rest of the pages.With that said I tried and elde.. if:
<?php
if ( is_home() || is_front_page() )
{
<img src=”<?php bloginfo(‘template_directory’);?>/images/header.gif” alt=”D Ivan Rodriguez” width=”960px” height=”320px” id=”logo” />;
}
else
{
<img src=”<?php bloginfo(‘template_directory’);?>/images/top.gif” alt=”D Ivan Rodriguez” width=”960px” height=”320px” id=”logo” />;
}
?>I get an arror that there is a syntax error on line 65. I cant find the error. Any suggestions from anyone?
Forum: Fixing WordPress
In reply to: moved wordpress site- new url and new serverIt says to do this before moving the site. Is it ok in your experience to do it after the site is up?