donatkinson
Forum Replies Created
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Add slideshow in header Twenty TenHey Josh,
This works like a charm – thanks again!Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Add slideshow in header Twenty TenThanks heaps for this – I’ll be giving it a go as soon as I can.
Cheers,Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Add slideshow in header Twenty Ten@jleuze
I checked out your plugin which is great!
Wondering if there is a way to have the banner slideshow on the homepage ( latest posts ) and keep the stock header image functionality for post pages ( single )
Thanks,Forum: Plugins
In reply to: [GPP Slideshow] [Plugin: GPP Slideshow] Images wont' display at full sizeOK – fixed it.
If anyone else strikes this, its:functons.php
line 47
‘if ( ! isset( $content_width ) )
$content_width = 640;’Change that width and Bobs your uncle!
Forum: Plugins
In reply to: [GPP Slideshow] [Plugin: GPP Slideshow] Images wont' display at full sizeThe theme I’m working with is Twenty Ten 1.2.
Forum: Plugins
In reply to: [Plugin: IDrive for WordPress] Are there any Known Conflicts?I would be keen to hear if you resolved your issues with this plugin as I am having what sounds like a similar problem.
After installing and activating, the settings page shows none of the graphics that can be seen on 3 other sites on which I’m running the plugins settings page, (header graphic, gradient login tab) and although you can input user and password the buttons to login don’t appear to do anything. I’ve tried a few automatic installs and a manual one but with no luck – tried deactivating other plugins but still nothing. Any clues would be much appreciated.Forum: Themes and Templates
In reply to: Homepage and Blog pageUnfortunately it’s on my local server so can’t provide a link.
Navigation is hard coded, I’m after about 6 top level pages of which one will be the “Blog” page ( not the homepage which is static ).My Homepage is comprised of the whole page ( header, content and footer ) contained in a home.php page. There are separate header.php, footer.php and sidebar.php for the other pages to use.
I’m also useing navigation which highlights the current tab in the menu.<ul> <li<?php if ( is_home() || is_single() || is_search() || is_archive() ) { echo ' class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>"><span>Home</span></a></li> <li<?php if ( is_page('about')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/about/"><span>About</span></a></li> <li<?php if ( is_page('our-services')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/our-services/"><span>Services</span></a></li> <li<?php if ( is_page('portfolio')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/portfolio/"><span>Portfolio</span></a></li> <li<?php if ( is_page('blog')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/blog/"><span>Blog</span></a></li> <li<?php if ( is_page('contact')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/contact/"><span>Contact</span></a></li> <li<?php if ( is_page('login')) { echo ' class="current_page_item"'; } ?>><a href="http://localhost:8888/wordpress_9/wp-login.php/"><span>Client Login</span></a></li> </ul>I’ve got the blog page calling a custom page template that basically has the index.php code but I’m not seeing any posts coming up.
I can’t select the homepage in the “Reading” option for a static homepage as it doesn’t exist in the created pages in WordPress.Any help gratefully accepted.
ThanksForum: Themes and Templates
In reply to: Homepage and Blog page…Only trouble is now my navigation is not showing and active class for the homepage and selecting the blog page shows the home nav active.
Crikey…Forum: Themes and Templates
In reply to: Homepage and Blog pageThanks samboll,
Because my home.php comprised of header, index and footer it didn’t exist in my pages and making a new page called home and setting it in the admin settings didn’t seem to work.
I’ve taken your advise and re-addressed the homepage with a custom page template and using the same header.php, sidebar.php and footer.php as all the other pages.
Cheers,Forum: Everything else WordPress
In reply to: Different headers for defferent page templatesCorrection:
I’ve tried creating two different versions of header.php ( 3 in total,header.php, headersingle.php and headerdefault.php )
and replacing the code in header.php with:
<?php
if (is_page(‘single’)){
<?php include(TEMPLATEPATH.’/headersingle.php’); ?>
}
else {
<?php include(TEMPLATEPATH.’/headerdefault.php’); ?>
}
?>