I am trying to use a certain template when displaying results from a search performed with the WP Custom Fields Search plugin.
To do so, I am using these Conditional Tags: <?php if ( is_home() || is_front_page() && !(is_search()) ) { ?> HTML CODE <?php } else { ?> HTML CODE <?php } ?>
The problem I'm running into is the search results page is falling into the "is_home" & "is_frontpage" condition. It doesn't seem to be obeying the "is_search" at all.
Here's what a search results URL looks like
//mywordpresswebsite/?search-class=DB_CustomSearch_Widget-db_customsearch_widget&widget_number=preset-1&cs-post_title-0=[SEARCHTERM]&search=Search
It appears the WP Custom Fields Search plugin does not consider itself a search page. Is there a way I can force it to exist as a search page and fall within the "is_search" condition?
http://wordpress.org/extend/plugins/wp-custom-fields-search/