Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Alex Lash

Forum Replies Created

Viewing 4 posts - 11 through 14 (of 14 total)
  • Alex Lash in reply to:
    Combobox not working in Safari (but working in Chrome, IE, Firefox)
    #3769
    This reply has been marked as private.
    Alex Lash in reply to:
    Sort search results by Categories
    #3766

    Hi Ross, yep, I’m using the Sort Order field. It seems to allow you to sort your items by date, title, etc, but I’m wondering if I can sort my results by category in alpha-order. So Categories would be in alpha order and their results would be Alpha order. Below would be a good example. (ultimately, I’d like to nest results within their categories)

    Category A
    – Result A-a
    – Result A-b
    – Result A-c
    Category B
    – Result B-a
    – Result B-b
    – Result B-c

    Does that make sense? I noticed that there are a few other options, like by Author or Custom Field, but I didn’t see a category option.

    Alex Lash in reply to:
    Combobox not working in Safari (but working in Chrome, IE, Firefox)
    #3762

    .entry-content is my Ajax content selector

    Alex Lash in reply to:
    Combobox not working in Safari (but working in Chrome, IE, Firefox)
    #3761

    Hi Ross,
    It’s not, unfortunately. Here is my search.php page below. My search form is the <?php get_sidebar('filter'); ?> widget.

    <?php
    /**
     * The template for displaying search results pages.
     *
     * @package _s
     */
    
    get_header(); ?>
    
    	<section id="primary" class="content-area">
    		<main id="main" class="site-main media" role="main">
    
    		<?php get_sidebar('filter'); ?>
    		
    			<?php if ( have_posts() ) : ?>
    			
    			<div class="entry-content">
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    						<?php
    						/**
    						 * Run the loop for the search to output the results.
    						 * If you want to overload this in a child theme then include a file
    						 * called content-search.php and that will be used instead.
    						 */
    						get_template_part( 'content', 'search' );
    						?>
    				<?php endwhile; ?>
    			</div>
    				
    			<?php else : ?>
    				<div class="entry-content">
    					<p class="no-results"><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Broaden your search by eliminating a selection or try a general search.', '_s' ); ?></p>
    					<?php get_search_form(); ?>
    				</div>
    				
    			<?php endif; ?>
    			
    		</main><!-- #main -->
    	</section><!-- #primary -->
    	<div id="pagination-holder">
    		<?php paginate(); ?>
    	</div>
    <?php get_footer(); ?>
Viewing 4 posts - 11 through 14 (of 14 total)