Title: Evan Mullins's Replies | WordPress.org

---

# Evan Mullins

  [  ](https://wordpress.org/support/users/circlecube/)

 *   [Profile](https://wordpress.org/support/users/circlecube/)
 *   [Topics Started](https://wordpress.org/support/users/circlecube/topics/)
 *   [Replies Created](https://wordpress.org/support/users/circlecube/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/circlecube/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/circlecube/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/circlecube/engagements/)
 *   [Favorites](https://wordpress.org/support/users/circlecube/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 51 total)

1 [2](https://wordpress.org/support/users/circlecube/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/circlecube/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/circlecube/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/circlecube/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login With Ajax - Fast Logins, 2FA, Redirects] parsererror : Error: jQuery was not called](https://wordpress.org/support/topic/parsererror-error-jquery-was-not-called/)
 *  [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [9 months, 3 weeks ago](https://wordpress.org/support/topic/parsererror-error-jquery-was-not-called/#post-18575204)
 * Which plugin was having the conflict? I’m seeing this issue too!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [How to determine the current post with get_posts()](https://wordpress.org/support/topic/how-to-determine-the-current-post-with-get_posts/)
 *  [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/how-to-determine-the-current-post-with-get_posts/#post-14640296)
 * Yes, you’ll want to get the id when you’re on that page you are placing nav links
   to all these solutions (custom post type posts) and then mark the solution you’re
   currently on. Outside your `get_posts` loop you can call `$thisid = get_the_ID();`
   and then inside your loop you check that post id and see if it’s equal to the`
   $thisid`
 * Something along these lines:
 *     ```
       // get this post id
       $thisid = get_the_ID();
   
       // get solution cpt's to create the link bar
       $posts = get_posts( array(
           'post_type'   => 'solution',
           'numberposts' => -1,
           'meta_key'    => 'posts_order',
           'orderby'     => 'meta_value',
           'order'       => 'ASC'
       ) );
   
       if ($posts) : ?>
   
           <!-- links to solutions -->
           <div class="navigation-bar-wrap container--narrow">
               <ul role="navigation" aria-label="navigation-bar" id="navigation-bar" class="navigation-bar">
   
                   <?php foreach ($posts as $post) :
   
                       setup_postdata($post)
   
                   ?>
                       <li class="navigation-bar-li <?php
       					// check this post vs current post
                           if ( $thisid === get_the_ID() ) {
                               echo 'current';
                           }
                       ?>">
                           <a class="btn btn--blue hvr-push navigation-bar-link" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                       </li>
   
                   <?php endforeach; ?>
   
               </ul>
           </div>
   
           <?php wp_reset_postdata(); ?>
   
       <?php endif; ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Git Repo for this Project](https://wordpress.org/support/topic/git-repo-for-this-project/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [7 years ago](https://wordpress.org/support/topic/git-repo-for-this-project/#post-11526644)
 * [https://github.com/Bag-Labs/greenhouse-job-board](https://github.com/Bag-Labs/greenhouse-job-board)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Not creating table wp-blogmeta](https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/)
 *  [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/not-creating-table-wp-blogmeta/#post-11251372)
 * I’m seeing the same. No wp_blogmeta table exists after initial update running
   network updates from site root or re-installing updates.
 * Anyone having luck manually creating the table for now?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Bag Labs Greenhouse plugin is open source](https://wordpress.org/support/topic/bag-labs-greenhouse-plugin-is-open-source/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/bag-labs-greenhouse-plugin-is-open-source/#post-11223766)
 * Awesome news! I agree that this will help maintain the plugin to have it open
   sourced for all in an easy way to contribute on github. It will also make it 
   easier for feature suggestions and pull requests.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Button Field] GitHub?](https://wordpress.org/support/topic/github-30/)
 *  Plugin Author [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/github-30/#post-10807672)
 * I fully support the idea! What do you say [@brownbagmarketing](https://wordpress.org/support/users/brownbagmarketing/)?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Button Field] Buttons with nofollow](https://wordpress.org/support/topic/buttons-with-nofollow/)
 *  Plugin Author [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/buttons-with-nofollow/#post-9899169)
 * This is now added in 1.7.0, let me know how it does for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Button Field] Buttons with nofollow](https://wordpress.org/support/topic/buttons-with-nofollow/)
 *  Plugin Author [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/buttons-with-nofollow/#post-9899029)
 * Good idea, I’ll work on getting this added soon.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Location tag not showing](https://wordpress.org/support/topic/location-tag-not-showing/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/location-tag-not-showing/#post-9633097)
 * Thanks for reaching out regarding your question.
 * If i understand it correctly, you are wanting to display the location for each
   job as part of the details for the job or are you looking to filter/sort by location?
   It sounds like you want to simply display the location. If so, try adding this
   to your shortcode.
 * `[greenhouse display="description|location" ]`
 * The display attribute will accept description, location, office and department.
   Let me know if this resolves your question.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Group by Department Issue](https://wordpress.org/support/topic/group-by-department-issue/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [9 years ago](https://wordpress.org/support/topic/group-by-department-issue/#post-9118058)
 * Thanks & props Colin, we’ll take a look at this and try to work it into our next
   release. Good case we hadn’t considered.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Feature Request: Document plugin JS](https://wordpress.org/support/topic/feature-request-document-plugin-js/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [9 years ago](https://wordpress.org/support/topic/feature-request-document-plugin-js/#post-9118049)
 * We have plans on adding custom template options to the job board, we’ll keep 
   this request in mind when doing so.
 * There is a global js var `ghjb_jobs` containing all jobs from greenhouse you 
   might find handy if you’re needing to write some custom js.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Greenhouse Job Board] Form Fields not Showing](https://wordpress.org/support/topic/form-fields-not-showing-2/)
 *  Plugin Contributor [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/form-fields-not-showing-2/#post-8809626)
 * Did you send that email? Haven’t seen it yet. wordpress at brownbagmarketing.
   com
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Button Field] doesn't work with wp 4.4.1 and ACF 5.3.3.2](https://wordpress.org/support/topic/doesnt-work-with-wp-441-and-acf-5332/)
 *  [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [10 years ago](https://wordpress.org/support/topic/doesnt-work-with-wp-441-and-acf-5332/#post-6986361)
 * Same on WP 4.5.2 and ACF (Pro) 5.3.6.1
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Toolbar Content Links] Improving the top admin toolbar for core](https://wordpress.org/support/topic/improving-the-top-admin-toolbar-for-core/)
 *  Plugin Author [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [10 years ago](https://wordpress.org/support/topic/improving-the-top-admin-toolbar-for-core/#post-7357592)
 * Interesting, thanks for letting me know.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Stream] Reevaluated and now back to being awesome](https://wordpress.org/support/topic/great-pre-20-release-but-worthless-since/)
 *  Thread Starter [Evan Mullins](https://wordpress.org/support/users/circlecube/)
 * (@circlecube)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/great-pre-20-release-but-worthless-since/#post-7890807)
 * Yes, I’m interested in checking it out when I have some time.
 * I’ve been loving [simple-history](https://wordpress.org/plugins/simple-history/)
   lately though, and don’t have/see a need to switch.

Viewing 15 replies - 1 through 15 (of 51 total)

1 [2](https://wordpress.org/support/users/circlecube/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/circlecube/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/circlecube/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/circlecube/replies/page/2/?output_format=md)