Comments 2CHRISTOPHER started the conversationOctober 17, 2016 at 12:45amIs there a way to add the search overlay to the whole site? 1,974Support repliedOctober 17, 2016 at 4:50pmHello you need to modify this bit from /sections/header_section.php (path relative to root theme folder)<?php } else if( (is_page_template('blog-page.php') || is_category() || is_search() || ($post_type == 'post') ) && soho_get_theme_options('clapat_soho_blog_show_search') ) { ?> <div class="page-search secondary-menu"><?php echo wp_kses_post( soho_get_theme_options('clapat_soho_blog_search_caption_open') ); ?></div> <?php } ?>to<?php } ?><div class="page-search secondary-menu"><?php echo wp_kses_post( soho_get_theme_options('clapat_soho_blog_search_caption_open') ); ?></div>ThanksThank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy CHRISTOPHER replied privately 1,974Support repliedOctober 17, 2016 at 5:16pmThat's right, sorry, plz insert<?php // display search section get_template_part('sections/search_section'); ?>in page.php line 16, portfolio-page.php line 33 and portfolio-mixed-page.php line 37ThanksThank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy 2CHRISTOPHER repliedOctober 17, 2016 at 8:48pmOk great that worked thank you, now how do I get the portfolio posts to be displayed in the results? nothing is showing? 2CHRISTOPHER repliedOctober 18, 2016 at 10:31pmNever mind I fixed this myself. Sign in to reply ...
Is there a way to add the search overlay to the whole site?
Hello you need to modify this bit from /sections/header_section.php (path relative to root theme folder)
<?php } else if( (is_page_template('blog-page.php') || is_category() || is_search() || ($post_type == 'post') ) && soho_get_theme_options('clapat_soho_blog_show_search') ) { ?>
<div class="page-search secondary-menu"><?php echo wp_kses_post( soho_get_theme_options('clapat_soho_blog_search_caption_open') ); ?></div>
<?php } ?>
to
<?php } ?>
<div class="page-search secondary-menu"><?php echo wp_kses_post( soho_get_theme_options('clapat_soho_blog_search_caption_open') ); ?></div>
Thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
That's right, sorry, plz insert
<?php
// display search section
get_template_part('sections/search_section');
?>
in page.php line 16, portfolio-page.php line 33 and portfolio-mixed-page.php line 37
Thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Ok great that worked thank you, now how do I get the portfolio posts to be displayed in the results? nothing is showing?
Never mind I fixed this myself.