Mat,
I found the solution, hope this can help someone else with the same problem:
here is the code.
as you can see there is a “if” and an “else if” to put the slider just in “Home” and “Post” pages.
I’ve just added “or is_search()” (without quotes) after “is_front_page() or is_home()” .. et voilà, it works perfectly.
<?php
// Check to see if the header image has been removed
$header_image = get_header_image();
if ( is_front_page() or is_home() ) {
if ( function_exists( 'easingsliderlite' ) ) {
easingsliderlite();}
}
else if ( $header_image ) :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( 'get_custom_header' ) ) {
// We need to figure out what the minimum width should be for our featured image.
// This result would be the suggested width if the theme were to implement flexible widths.
$header_image_width = get_theme_support( 'custom-header', 'width' );
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
}
?>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Again, many thanks for your help!
Ciao!