Is there a way to edit what displays on the Search Results page? I would like it to be clean and remove the tabbed box near the bottom of the page. Please advise how to do this while using a child theme. My site is http://www.matt-morse.com.
Hi mattmorse!
You can edit includes > loop-search.php file to change the search results page. Create a folder called includes then add the loop-search.php file. You can remove line 136:
<h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
And line 139-144 to remove the tabbed widget:
the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'arbitrary-instance-'.$id,
'before_widget' => '<div class="widget avia_combo_widget">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
Best regards,
Ismael
Thanks so much for this post. It was exactly what I needed as well :)
Worked perfectly
E.