/home/arranoyd/rg2solis/wp-content/themes/phlox/templates/theme-parts/loop-search.php
<?php /* Loops through all items to displaying search results. */

if ( have_posts() ){

    if ( !class_exists( 'AUXELS' ) ) {
        get_template_part('templates/theme-parts/entry/search' );
        
        auxin_the_search_paginate_nav(
            array( 'css_class' => esc_attr( auxin_get_option('archive_pagination_skin') ) )
        );
    } else {
        get_template_part('templates/theme-parts/entry/search-advanced' );
    }

} else {
    get_template_part('templates/theme-parts/content', 'no-results' );
}