Walton
Forum Replies Created
-
This will make the picture disappear but leave the menu and site title
Go header.php in Editor. Find the code that says:
<div id="logo"> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> </div>
And replace it with:
`<?php if(is_home() ) {;?>
<div id=”logo”>
<h1 class=”site-title”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
</div>
<?php } else {;?><h1 class=”site-title”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
<?php } ?>There’s probably a more elegant way to do it but that should work.
I don’t know which theme you mean. Landscape theme doesn’t appear to have a header image. However, this code should do it if you put it in the head:
<?php if(is_home() ) { THE CODE THAT SHOWS THE IMAGE } else { WHATEVER YOU WANT IN PLACE OF THE HEADER IMAGE } ?>
Forum: Plugins
In reply to: [Tools for Twitter] creation of posts from tweetsAh, it’s easy enough. You have to click on your account name on the Settings Page. Then a very clear check box comes up. That note: “Manage Twitter accounts on your Social settings page.” led me to believe there were no other options on that page.
Forum: Plugins
In reply to: [Tools for Twitter] creation of posts from tweetsSame question. I seem to remember there being a very clear option for this in the past that I can no longer find either here or in social.
Forum: Themes and Templates
In reply to: Some Custom Meta Boxes Not ShowingTo be clear, the Materials meta boxes are not blank on the Edit Post page. And I did a brand new lesson plan to see if the issue was something with my cache. No luck.
Forum: Themes and Templates
In reply to: Custom Menu Behind ContentMissed that. Thanks so much. That solved it.
Forum: Fixing WordPress
In reply to: Can't login with Google ChromeOK, as usual, I am a moron. Set COOKIE_DOMAIN to the wrong domain in wp_config. Sorry to trouble you.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] can't login wth ChromeDeactivated plugin, didn’t help. So this must be a different issue.
EDIT: In setting up a static domain I put the wrong domain in the DEFINE COOKIES domain in wp_config. My bad. Thanks for the help.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] can't login wth ChromeTried downgrading. Still won’t let me login
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] self-hosted CDNGot it figured out. Needs to be https://www.static.englishadvantage.info!
Knew it was a dumb questionForum: Themes and Templates
In reply to: Image Display on Arthemia ThemeAlso, the URL for the Image field has to start with
/wp-contentso it will look something like /wp-content/uploads/picture.jpg
Forum: Themes and Templates
In reply to: Previous Posts points to only custom post typesNow that WordPress 3.1 is out, I think I might design a customposttype-archive/index page and put in a manual link to that page. In case others are looking to do similar things and stumble on this post.
Would still love to hear if there’s a way to do it with previous_post_link though.
Forum: Fixing WordPress
In reply to: Display posts that are only in certain categoriesIt seems like taxonomies might work better for this. If you had taxonomies for each city, and then values for each type of restaurant, that should work for you. You can even make them hierarchical, so you could have Taxonomy name: Location, under that value, New York, under that value Pizzerias.
Forum: Fixing WordPress
In reply to: Reduce space between header and contentYou might want to look at .entry-content and .entry-summary
#slideshow-wrapper, #main and #content. Looks like there’s some margins and padding there. You might also look at css for img and ul because that could be affecting your slideshow.Forum: Fixing WordPress
In reply to: Taxonomies Work But Don't DisplayThanks for the help. Actually turns out I was using the wrong template file! Forgot that I changed the name of my custom post type, but didn’t change the name of my single php file!
Both codes above work fine, with slightly different displays.