Support

Account

Forum Replies Created

  • Hey, thanks for the response.

    I am looking to have a ‘users’ search field on my website. As you type in the field, I’d like it to display suggestions. ie If I were to type “Mi” in the field, “Mike” and “Mitchel” would appear as suggested results. Presently, the ACF fields do this in admin view.

    I think I’m working my way through the logic. Going to create a separate field group for just for my search field. I’ll post the results in case anyone else is looking for this.

  • Makes perfect sense. Thank you!

  • It does show the number attached to each term. Have found the issue to be with my theme. I’m using Divi. When I switch to twenty-sixteen the tax term page shows results. So now I am in touch with Divi trying to sort. Will follow up with findings. Appreciate your help thus far!

  • I tried it and no luck. I do have Return Value set to Term Object. I switched to Term ID and it didn’t have any effect.

  • Will try that now. Previously, when I tried that, the data stopped displaying on the front end single post. Will try to resave and recreate the posts if need be.

  • It’s an ACF field attached to a custom post type (Custom Post Type UI) “collab”.

  • There are no stupid questions when debugging 🙂 Thanks for the reply.

    The file is indeed named that and I wrote the file name to the screen to ensure:

    https://www.fshneco.com/v2/location/denver-co/

    The site is setup in a “v2” directory, I can’t imagine that would throw things off… but it is a thing.

    file name “taxonomy-location.php”

    Code:

    <?php
    /* 
    Template Name: Location
    */
    get_header(); ?>
     
    <div id="primary" class="site-content">
        <div id="content" role="main">
            <p>This is the Locations template ('taxonomy-location.php')</p>
            
           <?php while (have_posts()) {
              the_post();
            } ?>
        
         
        </div>
    </div>
     
    <?php get_footer(); ?>

    Thanks again for looking at this.
    Morgan

  • Thanks a lot for the response, John. I’ve been wracking my brain on this.

    I started out with a basic page and had no results. Trouble shooting brought me to the custom query.

    I’ve updated the template to just be this and still no results.

    ‘<?php
    /*
    Template Name: Location
    */
    get_header(); ?>

    <div id=”primary” class=”site-content”>
    <div id=”content” role=”main”>

    <?php while (have_posts()) {
    the_post();
    } ?>

    </div><!– #content –>
    </div><!– #primary –>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>’

Viewing 8 posts - 1 through 8 (of 8 total)